final class org.apache.lucene.util.packed.Direct64 extends org.apache.lucene.util.packed.PackedInts$MutableImpl
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.util.packed.Direct64
  super_class: org.apache.lucene.util.packed.PackedInts$MutableImpl
{
  final long[] values;
    descriptor: [J
    flags: (0x0010) ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 31
            ldc Lorg/apache/lucene/util/packed/Direct64;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.util.packed.Direct64.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.packed.Direct64 this
        start local 1 // int valueCount
         0: .line 35
            aload 0 /* this */
            iload 1 /* valueCount */
            bipush 64
            invokespecial org.apache.lucene.util.packed.PackedInts$MutableImpl.<init>:(II)V
         1: .line 36
            aload 0 /* this */
            iload 1 /* valueCount */
            newarray 11
            putfield org.apache.lucene.util.packed.Direct64.values:[J
         2: .line 37
            return
        end local 1 // int valueCount
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/apache/lucene/util/packed/Direct64;
            0    3     1  valueCount  I
    MethodParameters:
            Name  Flags
      valueCount  

  void <init>(int, org.apache.lucene.store.DataInput, int);
    descriptor: (ILorg/apache/lucene/store/DataInput;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.apache.lucene.util.packed.Direct64 this
        start local 1 // int packedIntsVersion
        start local 2 // org.apache.lucene.store.DataInput in
        start local 3 // int valueCount
         0: .line 40
            aload 0 /* this */
            iload 3 /* valueCount */
            invokespecial org.apache.lucene.util.packed.Direct64.<init>:(I)V
         1: .line 41
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 42
      StackMap locals: org.apache.lucene.util.packed.Direct64 int org.apache.lucene.store.DataInput int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            iload 4 /* i */
            aload 2 /* in */
            invokevirtual org.apache.lucene.store.DataInput.readLong:()J
            lastore
         4: .line 41
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            iload 3 /* valueCount */
            if_icmplt 3
        end local 4 // int i
         6: .line 44
            return
        end local 3 // int valueCount
        end local 2 // org.apache.lucene.store.DataInput in
        end local 1 // int packedIntsVersion
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lorg/apache/lucene/util/packed/Direct64;
            0    7     1  packedIntsVersion  I
            0    7     2                 in  Lorg/apache/lucene/store/DataInput;
            0    7     3         valueCount  I
            2    6     4                  i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                   Name  Flags
      packedIntsVersion  
      in                 
      valueCount         

  public long get(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.packed.Direct64 this
        start local 1 // int index
         0: .line 48
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            iload 1 /* index */
            laload
            lreturn
        end local 1 // int index
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/lucene/util/packed/Direct64;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  public void set(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.apache.lucene.util.packed.Direct64 this
        start local 1 // int index
        start local 2 // long value
         0: .line 53
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            iload 1 /* index */
            lload 2 /* value */
            lastore
         1: .line 54
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/lucene/util/packed/Direct64;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  final
      value  final

  public long ramBytesUsed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.packed.Direct64 this
         0: .line 59
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_HEADER:I
         1: .line 60
            bipush 8
         2: .line 59
            iadd
         3: .line 61
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_REF:I
         4: .line 59
            iadd
            i2l
         5: .line 58
            invokestatic org.apache.lucene.util.RamUsageEstimator.alignObjectSize:(J)J
         6: .line 62
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOf:([J)J
         7: .line 58
            ladd
            lreturn
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/lucene/util/packed/Direct64;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.packed.Direct64 this
         0: .line 67
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            lconst_0
            invokestatic java.util.Arrays.fill:([JJ)V
         1: .line 68
            return
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/packed/Direct64;

  public int get(int, long[], int, int);
    descriptor: (I[JII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // org.apache.lucene.util.packed.Direct64 this
        start local 1 // int index
        start local 2 // long[] arr
        start local 3 // int off
        start local 4 // int len
         0: .line 72
            getstatic org.apache.lucene.util.packed.Direct64.$assertionsDisabled:Z
            ifne 1
            iload 4 /* len */
            ifgt 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "len must be > 0 (got "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* len */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 73
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.packed.Direct64.$assertionsDisabled:Z
            ifne 3
            iload 1 /* index */
            iflt 2
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.valueCount:I
            if_icmplt 3
      StackMap locals:
      StackMap stack:
         2: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 74
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.packed.Direct64.$assertionsDisabled:Z
            ifne 4
            iload 3 /* off */
            iload 4 /* len */
            iadd
            aload 2 /* arr */
            arraylength
            if_icmple 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.valueCount:I
            iload 1 /* index */
            isub
            iload 4 /* len */
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* gets */
        start local 5 // int gets
         5: .line 77
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            iload 1 /* index */
            aload 2 /* arr */
            iload 3 /* off */
            iload 5 /* gets */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 78
            iload 5 /* gets */
            ireturn
        end local 5 // int gets
        end local 4 // int len
        end local 3 // int off
        end local 2 // long[] arr
        end local 1 // int index
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/lucene/util/packed/Direct64;
            0    7     1  index  I
            0    7     2    arr  [J
            0    7     3    off  I
            0    7     4    len  I
            5    7     5   gets  I
    MethodParameters:
       Name  Flags
      index  
      arr    
      off    
      len    

  public int set(int, long[], int, int);
    descriptor: (I[JII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // org.apache.lucene.util.packed.Direct64 this
        start local 1 // int index
        start local 2 // long[] arr
        start local 3 // int off
        start local 4 // int len
         0: .line 83
            getstatic org.apache.lucene.util.packed.Direct64.$assertionsDisabled:Z
            ifne 1
            iload 4 /* len */
            ifgt 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "len must be > 0 (got "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* len */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 84
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.packed.Direct64.$assertionsDisabled:Z
            ifne 3
            iload 1 /* index */
            iflt 2
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.valueCount:I
            if_icmplt 3
      StackMap locals:
      StackMap stack:
         2: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 85
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.packed.Direct64.$assertionsDisabled:Z
            ifne 4
            iload 3 /* off */
            iload 4 /* len */
            iadd
            aload 2 /* arr */
            arraylength
            if_icmple 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.valueCount:I
            iload 1 /* index */
            isub
            iload 4 /* len */
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* sets */
        start local 5 // int sets
         5: .line 88
            aload 2 /* arr */
            iload 3 /* off */
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            iload 1 /* index */
            iload 5 /* sets */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 89
            iload 5 /* sets */
            ireturn
        end local 5 // int sets
        end local 4 // int len
        end local 3 // int off
        end local 2 // long[] arr
        end local 1 // int index
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/lucene/util/packed/Direct64;
            0    7     1  index  I
            0    7     2    arr  [J
            0    7     3    off  I
            0    7     4    len  I
            5    7     5   sets  I
    MethodParameters:
       Name  Flags
      index  
      arr    
      off    
      len    

  public void fill(int, int, long);
    descriptor: (IIJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.apache.lucene.util.packed.Direct64 this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // long val
         0: .line 94
            aload 0 /* this */
            getfield org.apache.lucene.util.packed.Direct64.values:[J
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            lload 3 /* val */
            invokestatic java.util.Arrays.fill:([JIIJ)V
         1: .line 95
            return
        end local 3 // long val
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.apache.lucene.util.packed.Direct64 this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/lucene/util/packed/Direct64;
            0    2     1  fromIndex  I
            0    2     2    toIndex  I
            0    2     3        val  J
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    
      val        
}
SourceFile: "Direct64.java"
InnerClasses:
  abstract MutableImpl = org.apache.lucene.util.packed.PackedInts$MutableImpl of org.apache.lucene.util.packed.PackedInts