final class com.google.common.collect.Hashing
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.collect.Hashing
  super_class: java.lang.Object
{
  private static final long C1;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -862048943

  private static final long C2;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 461845907

  private static final int MAX_TABLE_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1073741824

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Hashing this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.collect.Hashing this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Hashing;

  static int smear(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // int hashCode
         0: .line 50
            ldc 461845907
            iload 0 /* hashCode */
            i2l
            ldc -862048943
            lmul
            l2i
            bipush 15
            invokestatic java.lang.Integer.rotateLeft:(II)I
            i2l
            lmul
            l2i
            ireturn
        end local 0 // int hashCode
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  hashCode  I
    MethodParameters:
          Name  Flags
      hashCode  

  static int smearedHash(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object o
         0: .line 54
            aload 0 /* o */
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* o */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals:
      StackMap stack: int
         2: invokestatic com.google.common.collect.Hashing.smear:(I)I
            ireturn
        end local 0 // java.lang.Object o
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     o  Ljava/lang/Object;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      o     

  static int closedTableSize(int, double);
    descriptor: (ID)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // int expectedEntries
        start local 1 // double loadFactor
         0: .line 62
            iload 0 /* expectedEntries */
            iconst_2
            invokestatic java.lang.Math.max:(II)I
            istore 0 /* expectedEntries */
         1: .line 63
            iload 0 /* expectedEntries */
            invokestatic java.lang.Integer.highestOneBit:(I)I
            istore 3 /* tableSize */
        start local 3 // int tableSize
         2: .line 65
            iload 0 /* expectedEntries */
            dload 1 /* loadFactor */
            iload 3 /* tableSize */
            i2d
            dmul
            d2i
            if_icmple 7
         3: .line 66
            iload 3 /* tableSize */
            iconst_1
            ishl
            istore 3 /* tableSize */
         4: .line 67
            iload 3 /* tableSize */
            ifle 5
            iload 3 /* tableSize */
            goto 6
      StackMap locals: int
      StackMap stack:
         5: ldc 1073741824
      StackMap locals:
      StackMap stack: int
         6: ireturn
         7: .line 69
      StackMap locals:
      StackMap stack:
            iload 3 /* tableSize */
            ireturn
        end local 3 // int tableSize
        end local 1 // double loadFactor
        end local 0 // int expectedEntries
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0  expectedEntries  I
            0    8     1       loadFactor  D
            2    8     3        tableSize  I
    MethodParameters:
                 Name  Flags
      expectedEntries  
      loadFactor       

  static boolean needsResizing(int, int, double);
    descriptor: (IID)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // int size
        start local 1 // int tableSize
        start local 2 // double loadFactor
         0: .line 73
            iload 0 /* size */
            i2d
            dload 2 /* loadFactor */
            iload 1 /* tableSize */
            i2d
            dmul
            dcmpl
            ifle 1
            iload 1 /* tableSize */
            ldc 1073741824
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // double loadFactor
        end local 1 // int tableSize
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        size  I
            0    2     1   tableSize  I
            0    2     2  loadFactor  D
    MethodParameters:
            Name  Flags
      size        
      tableSize   
      loadFactor  
}
SourceFile: "Hashing.java"
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtCompatible()