public final class com.carrotsearch.hppc.RandomizedHashOrderMixer implements com.carrotsearch.hppc.HashOrderMixingStrategy
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.carrotsearch.hppc.RandomizedHashOrderMixer
  super_class: java.lang.Object
{
  public static final com.carrotsearch.hppc.RandomizedHashOrderMixer INSTANCE;
    descriptor: Lcom/carrotsearch/hppc/RandomizedHashOrderMixer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  protected final java.util.concurrent.atomic.AtomicLong seedMixer;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 10
            new com.carrotsearch.hppc.RandomizedHashOrderMixer
            dup
            invokespecial com.carrotsearch.hppc.RandomizedHashOrderMixer.<init>:()V
            putstatic com.carrotsearch.hppc.RandomizedHashOrderMixer.INSTANCE:Lcom/carrotsearch/hppc/RandomizedHashOrderMixer;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
         0: .line 15
            aload 0 /* this */
            invokestatic com.carrotsearch.hppc.Containers.randomSeed64:()J
            invokespecial com.carrotsearch.hppc.RandomizedHashOrderMixer.<init>:(J)V
         1: .line 16
            return
        end local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/RandomizedHashOrderMixer;

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
        start local 1 // long seed
         0: .line 18
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 19
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            lload 1 /* seed */
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:(J)V
            putfield com.carrotsearch.hppc.RandomizedHashOrderMixer.seedMixer:Ljava/util/concurrent/atomic/AtomicLong;
         2: .line 20
            return
        end local 1 // long seed
        end local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/RandomizedHashOrderMixer;
            0    3     1  seed  J
    MethodParameters:
      Name  Flags
      seed  

  public int newKeyMixer(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
        start local 1 // int newContainerBufferSize
         0: .line 24
            aload 0 /* this */
            getfield com.carrotsearch.hppc.RandomizedHashOrderMixer.seedMixer:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.incrementAndGet:()J
            invokestatic com.carrotsearch.hppc.BitMixer.mix64:(J)J
            l2i
            ireturn
        end local 1 // int newContainerBufferSize
        end local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    1     0                    this  Lcom/carrotsearch/hppc/RandomizedHashOrderMixer;
            0    1     1  newContainerBufferSize  I
    MethodParameters:
                        Name  Flags
      newContainerBufferSize  

  public com.carrotsearch.hppc.HashOrderMixingStrategy clone();
    descriptor: ()Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
         0: .line 29
            aload 0 /* this */
            areturn
        end local 0 // com.carrotsearch.hppc.RandomizedHashOrderMixer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/RandomizedHashOrderMixer;

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.carrotsearch.hppc.RandomizedHashOrderMixer.clone:()Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "RandomizedHashOrderMixer.java"