package com.google.common.collect;

final class Hashing
{
  static int MAX_TABLE_SIZE = 1073741824;

  static int closedTableSize(int paramInt, double paramDouble)
  {
    int i = Math.max(paramInt, 2);
    int j = Integer.highestOneBit(i);
    if (i / j > paramDouble)
    {
      int k = j << 1;
      if (k > 0)
        return k;
      return MAX_TABLE_SIZE;
    }
    return j;
  }

  static int smear(int paramInt)
  {
    return 461845907 * Integer.rotateLeft(-862048943 * paramInt, 15);
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.google.common.collect.Hashing
 * JD-Core Version:    0.6.2
 */