public class org.eclipse.jgit.util.LongList
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.util.LongList
  super_class: java.lang.Object
{
  private long[] entries;
    descriptor: [J
    flags: (0x0002) ACC_PRIVATE

  private int count;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.LongList this
         0: .line 61
            aload 0 /* this */
            bipush 10
            invokespecial org.eclipse.jgit.util.LongList.<init>:(I)V
         1: .line 62
            return
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/util/LongList;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.util.LongList this
        start local 1 // int capacity
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            aload 0 /* this */
            iload 1 /* capacity */
            newarray 11
            putfield org.eclipse.jgit.util.LongList.entries:[J
         2: .line 72
            return
        end local 1 // int capacity
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jgit/util/LongList;
            0    3     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.LongList this
         0: .line 80
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            ireturn
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/util/LongList;

  public long get(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.util.LongList this
        start local 1 // int i
         0: .line 93
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            iload 1 /* i */
            if_icmpgt 2
         1: .line 94
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            iload 1 /* i */
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(I)V
            athrow
         2: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            iload 1 /* i */
            laload
            lreturn
        end local 1 // int i
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/util/LongList;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public boolean contains(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.jgit.util.LongList this
        start local 1 // long value
         0: .line 106
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 107
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            iload 3 /* i */
            laload
            lload 1 /* value */
            lcmp
            ifne 4
         3: .line 108
            iconst_1
            ireturn
         4: .line 106
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            if_icmplt 2
        end local 3 // int i
         6: .line 109
            iconst_0
            ireturn
        end local 1 // long value
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/jgit/util/LongList;
            0    7     1  value  J
            1    6     3      i  I
    MethodParameters:
       Name  Flags
      value  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.LongList this
         0: .line 116
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jgit.util.LongList.count:I
         1: .line 117
            return
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/util/LongList;

  public void add(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.util.LongList this
        start local 1 // long n
         0: .line 126
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            arraylength
            if_icmpne 2
         1: .line 127
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.util.LongList.grow:()V
         2: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.util.LongList.count:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jgit.util.LongList.count:I
            lload 1 /* n */
            lastore
         3: .line 129
            return
        end local 1 // long n
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jgit/util/LongList;
            0    4     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void set(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.jgit.util.LongList this
        start local 1 // int index
        start local 2 // long n
         0: .line 140
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            iload 1 /* index */
            if_icmpge 2
         1: .line 141
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            iload 1 /* index */
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(I)V
            athrow
         2: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            iload 1 /* index */
            if_icmpne 4
         3: .line 143
            aload 0 /* this */
            lload 2 /* n */
            invokevirtual org.eclipse.jgit.util.LongList.add:(J)V
            goto 5
         4: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            iload 1 /* index */
            lload 2 /* n */
            lastore
         5: .line 146
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long n
        end local 1 // int index
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/jgit/util/LongList;
            0    6     1  index  I
            0    6     2      n  J
    MethodParameters:
       Name  Flags
      index  
      n      

  public void fillTo(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.jgit.util.LongList this
        start local 1 // int toIndex
        start local 2 // long val
         0: .line 159
            goto 2
         1: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 2 /* val */
            invokevirtual org.eclipse.jgit.util.LongList.add:(J)V
         2: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            iload 1 /* toIndex */
            if_icmplt 1
         3: .line 161
            return
        end local 2 // long val
        end local 1 // int toIndex
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/jgit/util/LongList;
            0    4     1  toIndex  I
            0    4     2      val  J
    MethodParameters:
         Name  Flags
      toIndex  
      val      

  public void sort();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.LongList this
         0: .line 167
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            invokestatic java.util.Arrays.sort:([JII)V
         1: .line 168
            return
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/util/LongList;

  private void grow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.jgit.util.LongList this
         0: .line 171
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            arraylength
            bipush 16
            iadd
            iconst_3
            imul
            iconst_2
            idiv
            newarray 11
            astore 1 /* n */
        start local 1 // long[] n
         1: .line 172
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            iconst_0
            aload 1 /* n */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 173
            aload 0 /* this */
            aload 1 /* n */
            putfield org.eclipse.jgit.util.LongList.entries:[J
         3: .line 174
            return
        end local 1 // long[] n
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jgit/util/LongList;
            1    4     1     n  [J

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.jgit.util.LongList this
         0: .line 179
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* r */
        start local 1 // java.lang.StringBuilder r
         1: .line 180
            aload 1 /* r */
            bipush 91
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         2: .line 181
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 8
         4: .line 182
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            iload 2 /* i */
            ifle 6
         5: .line 183
            aload 1 /* r */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 184
      StackMap locals:
      StackMap stack:
            aload 1 /* r */
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.entries:[J
            iload 2 /* i */
            laload
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            pop
         7: .line 181
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.jgit.util.LongList.count:I
            if_icmplt 4
        end local 2 // int i
         9: .line 186
            aload 1 /* r */
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        10: .line 187
            aload 1 /* r */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder r
        end local 0 // org.eclipse.jgit.util.LongList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jgit/util/LongList;
            1   11     1     r  Ljava/lang/StringBuilder;
            3    9     2     i  I
}
SourceFile: "LongList.java"