public final class org.apache.lucene.util.IntBlockPool$SliceReader
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.util.IntBlockPool$SliceReader
  super_class: java.lang.Object
{
  private final org.apache.lucene.util.IntBlockPool pool;
    descriptor: Lorg/apache/lucene/util/IntBlockPool;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

  private int[] buffer;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

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

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

  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 293
            ldc Lorg/apache/lucene/util/IntBlockPool;
            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.IntBlockPool$SliceReader.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.apache.lucene.util.IntBlockPool);
    descriptor: (Lorg/apache/lucene/util/IntBlockPool;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
        start local 1 // org.apache.lucene.util.IntBlockPool pool
         0: .line 307
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 308
            aload 0 /* this */
            aload 1 /* pool */
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.pool:Lorg/apache/lucene/util/IntBlockPool;
         2: .line 309
            return
        end local 1 // org.apache.lucene.util.IntBlockPool pool
        end local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/IntBlockPool$SliceReader;
            0    3     1  pool  Lorg/apache/lucene/util/IntBlockPool;
    MethodParameters:
      Name  Flags
      pool  

  public void reset(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
        start local 1 // int startOffset
        start local 2 // int endOffset
         0: .line 315
            aload 0 /* this */
            iload 1 /* startOffset */
            sipush 8192
            idiv
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferUpto:I
         1: .line 316
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferUpto:I
            sipush 8192
            imul
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferOffset:I
         2: .line 317
            aload 0 /* this */
            iload 2 /* endOffset */
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.end:I
         3: .line 318
            aload 0 /* this */
            iload 1 /* startOffset */
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
         4: .line 319
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.level:I
         5: .line 321
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.pool:Lorg/apache/lucene/util/IntBlockPool;
            getfield org.apache.lucene.util.IntBlockPool.buffers:[[I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferUpto:I
            aaload
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.buffer:[I
         6: .line 322
            aload 0 /* this */
            iload 1 /* startOffset */
            sipush 8191
            iand
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
         7: .line 324
            getstatic org.apache.lucene.util.IntBlockPool.LEVEL_SIZE_ARRAY:[I
            iconst_0
            iaload
            istore 3 /* firstSize */
        start local 3 // int firstSize
         8: .line 325
            iload 1 /* startOffset */
            iload 3 /* firstSize */
            iadd
            iload 2 /* endOffset */
            if_icmplt 11
         9: .line 327
            aload 0 /* this */
            iload 2 /* endOffset */
            sipush 8191
            iand
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.limit:I
        10: .line 328
            goto 12
        11: .line 329
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            iload 3 /* firstSize */
            iadd
            iconst_1
            isub
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.limit:I
        12: .line 332
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int firstSize
        end local 2 // int endOffset
        end local 1 // int startOffset
        end local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/apache/lucene/util/IntBlockPool$SliceReader;
            0   13     1  startOffset  I
            0   13     2    endOffset  I
            8   13     3    firstSize  I
    MethodParameters:
             Name  Flags
      startOffset  
      endOffset    

  public boolean endOfSlice();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
         0: .line 340
            getstatic org.apache.lucene.util.IntBlockPool$SliceReader.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferOffset:I
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.end:I
            if_icmple 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 341
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferOffset:I
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.end:I
            if_icmpne 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/IntBlockPool$SliceReader;

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
         0: .line 349
            getstatic org.apache.lucene.util.IntBlockPool$SliceReader.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.IntBlockPool$SliceReader.endOfSlice:()Z
            ifeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 350
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.util.IntBlockPool$SliceReader.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.limit:I
            if_icmple 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 351
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.limit:I
            if_icmpne 4
         3: .line 352
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.IntBlockPool$SliceReader.nextSlice:()V
         4: .line 353
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.buffer:[I
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            iaload
            ireturn
        end local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/lucene/util/IntBlockPool$SliceReader;

  private void nextSlice();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
         0: .line 358
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.buffer:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.limit:I
            iaload
            istore 1 /* nextIndex */
        start local 1 // int nextIndex
         1: .line 359
            aload 0 /* this */
            getstatic org.apache.lucene.util.IntBlockPool.NEXT_LEVEL_ARRAY:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.level:I
            iconst_1
            isub
            iaload
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.level:I
         2: .line 360
            getstatic org.apache.lucene.util.IntBlockPool.LEVEL_SIZE_ARRAY:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.level:I
            iaload
            istore 2 /* newSize */
        start local 2 // int newSize
         3: .line 362
            aload 0 /* this */
            iload 1 /* nextIndex */
            sipush 8192
            idiv
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferUpto:I
         4: .line 363
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferUpto:I
            sipush 8192
            imul
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferOffset:I
         5: .line 365
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.pool:Lorg/apache/lucene/util/IntBlockPool;
            getfield org.apache.lucene.util.IntBlockPool.buffers:[[I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferUpto:I
            aaload
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.buffer:[I
         6: .line 366
            aload 0 /* this */
            iload 1 /* nextIndex */
            sipush 8191
            iand
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
         7: .line 368
            iload 1 /* nextIndex */
            iload 2 /* newSize */
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.end:I
            if_icmplt 11
         8: .line 370
            getstatic org.apache.lucene.util.IntBlockPool$SliceReader.$assertionsDisabled:Z
            ifne 9
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.end:I
            iload 1 /* nextIndex */
            isub
            ifgt 9
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         9: .line 371
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.end:I
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.bufferOffset:I
            isub
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.limit:I
        10: .line 372
            goto 12
        11: .line 375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.IntBlockPool$SliceReader.upto:I
            iload 2 /* newSize */
            iadd
            iconst_1
            isub
            putfield org.apache.lucene.util.IntBlockPool$SliceReader.limit:I
        12: .line 377
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int newSize
        end local 1 // int nextIndex
        end local 0 // org.apache.lucene.util.IntBlockPool$SliceReader this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/apache/lucene/util/IntBlockPool$SliceReader;
            1   13     1  nextIndex  I
            3   13     2    newSize  I
}
SourceFile: "IntBlockPool.java"
NestHost: org.apache.lucene.util.IntBlockPool
InnerClasses:
  public final SliceReader = org.apache.lucene.util.IntBlockPool$SliceReader of org.apache.lucene.util.IntBlockPool