class com.google.common.hash.BloomFilterStrategies$1 extends com.google.common.hash.BloomFilterStrategies
  minor version: 0
  major version: 59
  flags: flags: (0x4020) ACC_SUPER, ACC_ANNOTATION
  this_class: com.google.common.hash.BloomFilterStrategies$1
  super_class: com.google.common.hash.BloomFilterStrategies
{
  void <init>(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.hash.BloomFilterStrategies$1 this
         0: .line 45
            aload 0 /* this */
            aload 1
            iload 2
            invokespecial com.google.common.hash.BloomFilterStrategies.<init>:(Ljava/lang/String;I)V
            return
        end local 0 // com.google.common.hash.BloomFilterStrategies$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/hash/BloomFilterStrategies$1;
    MethodParameters:
               Name  Flags
      $enum$name     
      $enum$ordinal  

  public <T> boolean put(T, com.google.common.hash.Funnel<? super T>, int, com.google.common.hash.BloomFilterStrategies$LockFreeBitArray);
    descriptor: (Ljava/lang/Object;Lcom/google/common/hash/Funnel;ILcom/google/common/hash/BloomFilterStrategies$LockFreeBitArray;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=14, args_size=5
        start local 0 // com.google.common.hash.BloomFilterStrategies$1 this
        start local 1 // java.lang.Object object
        start local 2 // com.google.common.hash.Funnel funnel
        start local 3 // int numHashFunctions
        start local 4 // com.google.common.hash.BloomFilterStrategies$LockFreeBitArray bits
         0: .line 49
            aload 4 /* bits */
            invokevirtual com.google.common.hash.BloomFilterStrategies$LockFreeBitArray.bitSize:()J
            lstore 5 /* bitSize */
        start local 5 // long bitSize
         1: .line 50
            invokestatic com.google.common.hash.Hashing.murmur3_128:()Lcom/google/common/hash/HashFunction;
            aload 1 /* object */
            aload 2 /* funnel */
            invokeinterface com.google.common.hash.HashFunction.hashObject:(Ljava/lang/Object;Lcom/google/common/hash/Funnel;)Lcom/google/common/hash/HashCode;
            invokevirtual com.google.common.hash.HashCode.asLong:()J
            lstore 7 /* hash64 */
        start local 7 // long hash64
         2: .line 51
            lload 7 /* hash64 */
            l2i
            istore 9 /* hash1 */
        start local 9 // int hash1
         3: .line 52
            lload 7 /* hash64 */
            bipush 32
            lushr
            l2i
            istore 10 /* hash2 */
        start local 10 // int hash2
         4: .line 54
            iconst_0
            istore 11 /* bitsChanged */
        start local 11 // boolean bitsChanged
         5: .line 55
            iconst_1
            istore 12 /* i */
        start local 12 // int i
         6: goto 12
         7: .line 56
      StackMap locals: com.google.common.hash.BloomFilterStrategies$1 java.lang.Object com.google.common.hash.Funnel int com.google.common.hash.BloomFilterStrategies$LockFreeBitArray long long int int int int
      StackMap stack:
            iload 9 /* hash1 */
            iload 12 /* i */
            iload 10 /* hash2 */
            imul
            iadd
            istore 13 /* combinedHash */
        start local 13 // int combinedHash
         8: .line 58
            iload 13 /* combinedHash */
            ifge 10
         9: .line 59
            iload 13 /* combinedHash */
            iconst_m1
            ixor
            istore 13 /* combinedHash */
        10: .line 61
      StackMap locals: int
      StackMap stack:
            iload 11 /* bitsChanged */
            aload 4 /* bits */
            iload 13 /* combinedHash */
            i2l
            lload 5 /* bitSize */
            lrem
            invokevirtual com.google.common.hash.BloomFilterStrategies$LockFreeBitArray.set:(J)Z
            ior
            istore 11 /* bitsChanged */
        end local 13 // int combinedHash
        11: .line 55
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 12 /* i */
            iload 3 /* numHashFunctions */
            if_icmple 7
        end local 12 // int i
        13: .line 63
            iload 11 /* bitsChanged */
            ireturn
        end local 11 // boolean bitsChanged
        end local 10 // int hash2
        end local 9 // int hash1
        end local 7 // long hash64
        end local 5 // long bitSize
        end local 4 // com.google.common.hash.BloomFilterStrategies$LockFreeBitArray bits
        end local 3 // int numHashFunctions
        end local 2 // com.google.common.hash.Funnel funnel
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.hash.BloomFilterStrategies$1 this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   14     0              this  Lcom/google/common/hash/BloomFilterStrategies$1;
            0   14     1            object  TT;
            0   14     2            funnel  Lcom/google/common/hash/Funnel<-TT;>;
            0   14     3  numHashFunctions  I
            0   14     4              bits  Lcom/google/common/hash/BloomFilterStrategies$LockFreeBitArray;
            1   14     5           bitSize  J
            2   14     7            hash64  J
            3   14     9             hash1  I
            4   14    10             hash2  I
            5   14    11       bitsChanged  Z
            6   13    12                 i  I
            8   11    13      combinedHash  I
    Signature: <T:Ljava/lang/Object;>(TT;Lcom/google/common/hash/Funnel<-TT;>;ILcom/google/common/hash/BloomFilterStrategies$LockFreeBitArray;)Z
    MethodParameters:
                  Name  Flags
      object            
      funnel            
      numHashFunctions  
      bits              

  public <T> boolean mightContain(T, com.google.common.hash.Funnel<? super T>, int, com.google.common.hash.BloomFilterStrategies$LockFreeBitArray);
    descriptor: (Ljava/lang/Object;Lcom/google/common/hash/Funnel;ILcom/google/common/hash/BloomFilterStrategies$LockFreeBitArray;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=13, args_size=5
        start local 0 // com.google.common.hash.BloomFilterStrategies$1 this
        start local 1 // java.lang.Object object
        start local 2 // com.google.common.hash.Funnel funnel
        start local 3 // int numHashFunctions
        start local 4 // com.google.common.hash.BloomFilterStrategies$LockFreeBitArray bits
         0: .line 69
            aload 4 /* bits */
            invokevirtual com.google.common.hash.BloomFilterStrategies$LockFreeBitArray.bitSize:()J
            lstore 5 /* bitSize */
        start local 5 // long bitSize
         1: .line 70
            invokestatic com.google.common.hash.Hashing.murmur3_128:()Lcom/google/common/hash/HashFunction;
            aload 1 /* object */
            aload 2 /* funnel */
            invokeinterface com.google.common.hash.HashFunction.hashObject:(Ljava/lang/Object;Lcom/google/common/hash/Funnel;)Lcom/google/common/hash/HashCode;
            invokevirtual com.google.common.hash.HashCode.asLong:()J
            lstore 7 /* hash64 */
        start local 7 // long hash64
         2: .line 71
            lload 7 /* hash64 */
            l2i
            istore 9 /* hash1 */
        start local 9 // int hash1
         3: .line 72
            lload 7 /* hash64 */
            bipush 32
            lushr
            l2i
            istore 10 /* hash2 */
        start local 10 // int hash2
         4: .line 74
            iconst_1
            istore 11 /* i */
        start local 11 // int i
         5: goto 12
         6: .line 75
      StackMap locals: com.google.common.hash.BloomFilterStrategies$1 java.lang.Object com.google.common.hash.Funnel int com.google.common.hash.BloomFilterStrategies$LockFreeBitArray long long int int int
      StackMap stack:
            iload 9 /* hash1 */
            iload 11 /* i */
            iload 10 /* hash2 */
            imul
            iadd
            istore 12 /* combinedHash */
        start local 12 // int combinedHash
         7: .line 77
            iload 12 /* combinedHash */
            ifge 9
         8: .line 78
            iload 12 /* combinedHash */
            iconst_m1
            ixor
            istore 12 /* combinedHash */
         9: .line 80
      StackMap locals: int
      StackMap stack:
            aload 4 /* bits */
            iload 12 /* combinedHash */
            i2l
            lload 5 /* bitSize */
            lrem
            invokevirtual com.google.common.hash.BloomFilterStrategies$LockFreeBitArray.get:(J)Z
            ifne 11
        10: .line 81
            iconst_0
            ireturn
        end local 12 // int combinedHash
        11: .line 74
      StackMap locals:
      StackMap stack:
            iinc 11 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 11 /* i */
            iload 3 /* numHashFunctions */
            if_icmple 6
        end local 11 // int i
        13: .line 84
            iconst_1
            ireturn
        end local 10 // int hash2
        end local 9 // int hash1
        end local 7 // long hash64
        end local 5 // long bitSize
        end local 4 // com.google.common.hash.BloomFilterStrategies$LockFreeBitArray bits
        end local 3 // int numHashFunctions
        end local 2 // com.google.common.hash.Funnel funnel
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.hash.BloomFilterStrategies$1 this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   14     0              this  Lcom/google/common/hash/BloomFilterStrategies$1;
            0   14     1            object  TT;
            0   14     2            funnel  Lcom/google/common/hash/Funnel<-TT;>;
            0   14     3  numHashFunctions  I
            0   14     4              bits  Lcom/google/common/hash/BloomFilterStrategies$LockFreeBitArray;
            1   14     5           bitSize  J
            2   14     7            hash64  J
            3   14     9             hash1  I
            4   14    10             hash2  I
            5   13    11                 i  I
            7   11    12      combinedHash  I
    Signature: <T:Ljava/lang/Object;>(TT;Lcom/google/common/hash/Funnel<-TT;>;ILcom/google/common/hash/BloomFilterStrategies$LockFreeBitArray;)Z
    MethodParameters:
                  Name  Flags
      object            
      funnel            
      numHashFunctions  
      bits              
}
SourceFile: "BloomFilterStrategies.java"
EnclosingMethod: com.google.common.hash.BloomFilterStrategies
NestHost: com.google.common.hash.BloomFilterStrategies
InnerClasses:
  com.google.common.hash.BloomFilterStrategies$1
  final LockFreeBitArray = com.google.common.hash.BloomFilterStrategies$LockFreeBitArray of com.google.common.hash.BloomFilterStrategies