public class com.carrotsearch.hppc.ByteArrayDeque extends com.carrotsearch.hppc.AbstractByteCollection implements com.carrotsearch.hppc.ByteDeque, com.carrotsearch.hppc.Preallocable, java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.carrotsearch.hppc.ByteArrayDeque
  super_class: com.carrotsearch.hppc.AbstractByteCollection
{
  public byte[] buffer;
    descriptor: [B
    flags: (0x0001) ACC_PUBLIC

  public int head;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public int tail;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  protected final com.carrotsearch.hppc.ArraySizingStrategy resizer;
    descriptor: Lcom/carrotsearch/hppc/ArraySizingStrategy;
    flags: (0x0014) ACC_PROTECTED, 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 18
            ldc Lcom/carrotsearch/hppc/ByteArrayDeque;
            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 com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 52
            aload 0 /* this */
            iconst_4
            invokespecial com.carrotsearch.hppc.ByteArrayDeque.<init>:(I)V
         1: .line 53
            return
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // int expectedElements
         0: .line 63
            aload 0 /* this */
            iload 1 /* expectedElements */
            new com.carrotsearch.hppc.BoundedProportionalArraySizingStrategy
            dup
            invokespecial com.carrotsearch.hppc.BoundedProportionalArraySizingStrategy.<init>:()V
            invokespecial com.carrotsearch.hppc.ByteArrayDeque.<init>:(ILcom/carrotsearch/hppc/ArraySizingStrategy;)V
         1: .line 64
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    2     1  expectedElements  I
    MethodParameters:
                  Name  Flags
      expectedElements  

  public void <init>(int, com.carrotsearch.hppc.ArraySizingStrategy);
    descriptor: (ILcom/carrotsearch/hppc/ArraySizingStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // int expectedElements
        start local 2 // com.carrotsearch.hppc.ArraySizingStrategy resizer
         0: .line 76
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.AbstractByteCollection.<init>:()V
         1: .line 29
            aload 0 /* this */
            getstatic com.carrotsearch.hppc.ByteArrayList.EMPTY_ARRAY:[B
            putfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
         2: .line 77
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 3
            aload 2 /* resizer */
            ifnonnull 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 78
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque int com.carrotsearch.hppc.ArraySizingStrategy
      StackMap stack:
            aload 0 /* this */
            aload 2 /* resizer */
            putfield com.carrotsearch.hppc.ByteArrayDeque.resizer:Lcom/carrotsearch/hppc/ArraySizingStrategy;
         4: .line 79
            aload 0 /* this */
            iload 1 /* expectedElements */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureCapacity:(I)V
         5: .line 80
            return
        end local 2 // com.carrotsearch.hppc.ArraySizingStrategy resizer
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    6     1  expectedElements  I
            0    6     2           resizer  Lcom/carrotsearch/hppc/ArraySizingStrategy;
    MethodParameters:
                  Name  Flags
      expectedElements  
      resizer           

  public void <init>(com.carrotsearch.hppc.ByteContainer);
    descriptor: (Lcom/carrotsearch/hppc/ByteContainer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.ByteContainer container
         0: .line 87
            aload 0 /* this */
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ByteContainer.size:()I
            invokespecial com.carrotsearch.hppc.ByteArrayDeque.<init>:(I)V
         1: .line 88
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addLast:(Lcom/carrotsearch/hppc/ByteContainer;)I
            pop
         2: .line 89
            return
        end local 1 // com.carrotsearch.hppc.ByteContainer container
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    3     1  container  Lcom/carrotsearch/hppc/ByteContainer;
    MethodParameters:
           Name  Flags
      container  

  public void addFirst(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e1
         0: .line 96
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            istore 2 /* h */
        start local 2 // int h
         1: .line 97
            iload 2 /* h */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmpne 4
         2: .line 98
            aload 0 /* this */
            iconst_1
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         3: .line 99
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            istore 2 /* h */
         4: .line 101
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            iload 2 /* h */
            dup_x1
            putfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            iload 1 /* e1 */
            bastore
         5: .line 102
            return
        end local 2 // int h
        end local 1 // byte e1
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    6     1    e1  B
            1    6     2     h  I
    MethodParameters:
      Name  Flags
      e1    

  public final void addFirst(byte[]);
    descriptor: ([B)V
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte[] elements
         0: .line 114
            aload 0 /* this */
            aload 1 /* elements */
            arraylength
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         1: .line 115
            aload 1 /* elements */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque byte[] top int int byte[]
      StackMap stack:
         2: aload 5
            iload 3
            baload
            istore 2 /* k */
        start local 2 // byte k
         3: .line 116
            aload 0 /* this */
            iload 2 /* k */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addFirst:(B)V
        end local 2 // byte k
         4: .line 115
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 118
            return
        end local 1 // byte[] elements
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1  elements  [B
            3    4     2         k  B
    MethodParameters:
          Name  Flags
      elements  

  public int addFirst(com.carrotsearch.hppc.ByteContainer);
    descriptor: (Lcom/carrotsearch/hppc/ByteContainer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.ByteContainer container
         0: .line 129
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ByteContainer.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 130
            aload 0 /* this */
            iload 2 /* size */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         2: .line 132
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ByteContainer.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque com.carrotsearch.hppc.ByteContainer int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ByteCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         4: .line 133
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ByteCursor.value:B
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addFirst:(B)V
        end local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         5: .line 132
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 136
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // com.carrotsearch.hppc.ByteContainer container
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1  container  Lcom/carrotsearch/hppc/ByteContainer;
            1    7     2       size  I
            4    5     3     cursor  Lcom/carrotsearch/hppc/cursors/ByteCursor;
    MethodParameters:
           Name  Flags
      container  

  public int addFirst(java.lang.Iterable<? extends com.carrotsearch.hppc.cursors.ByteCursor>);
    descriptor: (Ljava/lang/Iterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // java.lang.Iterable iterable
         0: .line 148
            iconst_0
            istore 2 /* size */
        start local 2 // int size
         1: .line 149
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque java.lang.Iterable int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ByteCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         3: .line 150
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ByteCursor.value:B
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addFirst:(B)V
         4: .line 151
            iinc 2 /* size */ 1
        end local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         5: .line 149
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 153
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1  iterable  Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ByteCursor;>;
            1    7     2      size  I
            3    5     3    cursor  Lcom/carrotsearch/hppc/cursors/ByteCursor;
    Signature: (Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ByteCursor;>;)I
    MethodParameters:
          Name  Flags
      iterable  

  public void addLast(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e1
         0: .line 161
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 2 /* t */
        start local 2 // int t
         1: .line 162
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            iload 2 /* t */
            if_icmpne 4
         2: .line 163
            aload 0 /* this */
            iconst_1
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         3: .line 164
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 2 /* t */
         4: .line 166
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            iload 1 /* e1 */
            bastore
         5: .line 167
            aload 0 /* this */
            iload 2 /* t */
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
         6: .line 168
            return
        end local 2 // int t
        end local 1 // byte e1
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1    e1  B
            1    7     2     t  I
    MethodParameters:
      Name  Flags
      e1    

  public final void addLast(byte[]);
    descriptor: ([B)V
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte[] elements
         0: .line 182
            aload 0 /* this */
            iconst_1
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         1: .line 183
            aload 1 /* elements */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque byte[] top int int byte[]
      StackMap stack:
         2: aload 5
            iload 3
            baload
            istore 2 /* k */
        start local 2 // byte k
         3: .line 184
            aload 0 /* this */
            iload 2 /* k */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addLast:(B)V
        end local 2 // byte k
         4: .line 183
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 186
            return
        end local 1 // byte[] elements
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1  elements  [B
            3    4     2         k  B
    MethodParameters:
          Name  Flags
      elements  

  public int addLast(com.carrotsearch.hppc.ByteContainer);
    descriptor: (Lcom/carrotsearch/hppc/ByteContainer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.ByteContainer container
         0: .line 197
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ByteContainer.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 198
            aload 0 /* this */
            iload 2 /* size */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         2: .line 200
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.ByteContainer.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque com.carrotsearch.hppc.ByteContainer int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ByteCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         4: .line 201
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ByteCursor.value:B
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addLast:(B)V
        end local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         5: .line 200
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 204
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // com.carrotsearch.hppc.ByteContainer container
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1  container  Lcom/carrotsearch/hppc/ByteContainer;
            1    7     2       size  I
            4    5     3     cursor  Lcom/carrotsearch/hppc/cursors/ByteCursor;
    MethodParameters:
           Name  Flags
      container  

  public int addLast(java.lang.Iterable<? extends com.carrotsearch.hppc.cursors.ByteCursor>);
    descriptor: (Ljava/lang/Iterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // java.lang.Iterable iterable
         0: .line 216
            iconst_0
            istore 2 /* size */
        start local 2 // int size
         1: .line 217
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque java.lang.Iterable int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ByteCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         3: .line 218
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.ByteCursor.value:B
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addLast:(B)V
         4: .line 219
            iinc 2 /* size */ 1
        end local 3 // com.carrotsearch.hppc.cursors.ByteCursor cursor
         5: .line 217
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 221
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1  iterable  Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ByteCursor;>;
            1    7     2      size  I
            3    5     3    cursor  Lcom/carrotsearch/hppc/cursors/ByteCursor;
    Signature: (Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/ByteCursor;>;)I
    MethodParameters:
          Name  Flags
      iterable  

  public byte removeFirst();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 229
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            baload
            istore 1 /* result */
        start local 1 // byte result
         2: .line 232
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            iconst_0
            bastore
         3: .line 233
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            putfield com.carrotsearch.hppc.ByteArrayDeque.head:I
         4: .line 234
            iload 1 /* result */
            ireturn
        end local 1 // byte result
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            2    5     1  result  B

  public byte removeLast();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 242
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
         2: .line 245
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            baload
            istore 1 /* result */
        start local 1 // byte result
         3: .line 246
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            iconst_0
            bastore
         4: .line 247
            iload 1 /* result */
            ireturn
        end local 1 // byte result
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            3    5     1  result  B

  public byte getFirst();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 255
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            baload
            ireturn
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;

  public byte getLast();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 265
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            ifgt 1
            new java.lang.AssertionError
            dup
            ldc "The deque is empty."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            baload
            ireturn
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;

  public int removeFirst(byte);
    descriptor: (B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e1
         0: .line 275
            aload 0 /* this */
            iload 1 /* e1 */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.bufferIndexOf:(B)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 276
            iload 2 /* index */
            iflt 3
         2: .line 277
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.removeAtBufferIndex:(I)V
         3: .line 278
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
            ireturn
        end local 2 // int index
        end local 1 // byte e1
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    4     1     e1  B
            1    4     2  index  I
    MethodParameters:
      Name  Flags
      e1    

  public int bufferIndexOf(byte);
    descriptor: (B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e1
         0: .line 291
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            istore 2 /* last */
        start local 2 // int last
         1: .line 292
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            istore 3 /* bufLen */
        start local 3 // int bufLen
         2: .line 293
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 294
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 4 /* i */
            baload
            iload 1 /* e1 */
            if_icmpne 6
         5: .line 295
            iload 4 /* i */
            ireturn
         6: .line 293
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            iload 3 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 4 /* i */
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 2 /* last */
            if_icmpne 4
        end local 4 // int i
         8: .line 299
            iconst_m1
            ireturn
        end local 3 // int bufLen
        end local 2 // int last
        end local 1 // byte e1
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    9     1      e1  B
            1    9     2    last  I
            2    9     3  bufLen  I
            3    8     4       i  I
    MethodParameters:
      Name  Flags
      e1    

  public int removeLast(byte);
    descriptor: (B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e1
         0: .line 307
            aload 0 /* this */
            iload 1 /* e1 */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.lastBufferIndexOf:(B)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 308
            iload 2 /* index */
            iflt 3
         2: .line 309
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.removeAtBufferIndex:(I)V
         3: .line 311
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
            ireturn
        end local 2 // int index
        end local 1 // byte e1
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    4     1     e1  B
            1    4     2  index  I
    MethodParameters:
      Name  Flags
      e1    

  public int lastBufferIndexOf(byte);
    descriptor: (B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e1
         0: .line 324
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            istore 2 /* bufLen */
        start local 2 // int bufLen
         1: .line 325
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            iload 2 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            istore 3 /* last */
        start local 3 // int last
         2: .line 326
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            iload 2 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            istore 4 /* i */
        start local 4 // int i
         3: goto 7
         4: .line 327
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 4 /* i */
            baload
            iload 1 /* e1 */
            if_icmpne 6
         5: .line 328
            iload 4 /* i */
            ireturn
         6: .line 326
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            iload 2 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            istore 4 /* i */
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 3 /* last */
            if_icmpne 4
        end local 4 // int i
         8: .line 331
            iconst_m1
            ireturn
        end local 3 // int last
        end local 2 // int bufLen
        end local 1 // byte e1
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    9     1      e1  B
            1    9     2  bufLen  I
            2    9     3    last  I
            3    8     4       i  I
    MethodParameters:
      Name  Flags
      e1    

  public int removeAll(byte);
    descriptor: (B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e1
         0: .line 339
            iconst_0
            istore 2 /* removed */
        start local 2 // int removed
         1: .line 340
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            istore 3 /* last */
        start local 3 // int last
         2: .line 341
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            istore 4 /* bufLen */
        start local 4 // int bufLen
         3: .line 343
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            dup
            istore 6 /* to */
        start local 6 // int to
         4: istore 5 /* from */
        start local 5 // int from
         5: goto 15
         6: .line 344
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque int int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 5 /* from */
            baload
            iload 1 /* e1 */
            if_icmpne 10
         7: .line 345
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 5 /* from */
            iconst_0
            bastore
         8: .line 346
            iinc 2 /* removed */ 1
         9: .line 347
            goto 14
        10: .line 350
      StackMap locals:
      StackMap stack:
            iload 6 /* to */
            iload 5 /* from */
            if_icmpeq 13
        11: .line 351
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 6 /* to */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 5 /* from */
            baload
            bastore
        12: .line 352
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 5 /* from */
            iconst_0
            bastore
        13: .line 355
      StackMap locals:
      StackMap stack:
            iload 6 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 6 /* to */
        14: .line 343
      StackMap locals:
      StackMap stack:
            iload 5 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 5 /* from */
      StackMap locals:
      StackMap stack:
        15: iload 5 /* from */
            iload 3 /* last */
            if_icmpne 6
        16: .line 358
            aload 0 /* this */
            iload 6 /* to */
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
        17: .line 359
            iload 2 /* removed */
            ireturn
        end local 6 // int to
        end local 5 // int from
        end local 4 // int bufLen
        end local 3 // int last
        end local 2 // int removed
        end local 1 // byte e1
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0     this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0   18     1       e1  B
            1   18     2  removed  I
            2   18     3     last  I
            3   18     4   bufLen  I
            5   18     5     from  I
            4   18     6       to  I
    MethodParameters:
      Name  Flags
      e1    

  public void removeAtBufferIndex(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // int index
         0: .line 372
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 5
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmpgt 2
         1: .line 373
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            if_icmplt 3
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmplt 5
            goto 3
         2: .line 374
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            if_icmpge 5
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmplt 5
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index out of range (head="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         4: .line 375
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", tail="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", index="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* index */
            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
         5: .line 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 2 /* buffer */
        start local 2 // byte[] buffer
         6: .line 379
            aload 2 /* buffer */
            arraylength
            istore 3 /* bufLen */
        start local 3 // int bufLen
         7: .line 380
            iload 3 /* bufLen */
            iconst_1
            isub
            istore 4 /* lastIndex */
        start local 4 // int lastIndex
         8: .line 381
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            istore 5 /* head */
        start local 5 // int head
         9: .line 382
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            istore 6 /* tail */
        start local 6 // int tail
        10: .line 384
            iload 1 /* index */
            iload 5 /* head */
            isub
            invokestatic java.lang.Math.abs:(I)I
            iload 3 /* bufLen */
            irem
            istore 7 /* leftChunk */
        start local 7 // int leftChunk
        11: .line 385
            iload 6 /* tail */
            iload 1 /* index */
            isub
            invokestatic java.lang.Math.abs:(I)I
            iload 3 /* bufLen */
            irem
            istore 8 /* rightChunk */
        start local 8 // int rightChunk
        12: .line 387
            iload 7 /* leftChunk */
            iload 8 /* rightChunk */
            if_icmpge 22
        13: .line 388
            iload 1 /* index */
            iload 5 /* head */
            if_icmplt 16
        14: .line 389
            aload 2 /* buffer */
            iload 5 /* head */
            aload 2 /* buffer */
            iload 5 /* head */
            iconst_1
            iadd
            iload 7 /* leftChunk */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 390
            goto 19
        16: .line 391
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque int byte[] int int int int int int
      StackMap stack:
            aload 2 /* buffer */
            iconst_0
            aload 2 /* buffer */
            iconst_1
            iload 1 /* index */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        17: .line 392
            aload 2 /* buffer */
            iconst_0
            aload 2 /* buffer */
            iload 4 /* lastIndex */
            baload
            bastore
        18: .line 393
            aload 2 /* buffer */
            iload 5 /* head */
            aload 2 /* buffer */
            iload 5 /* head */
            iconst_1
            iadd
            iload 4 /* lastIndex */
            iload 5 /* head */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 395
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            iload 5 /* head */
            iconst_0
            bastore
        20: .line 396
            aload 0 /* this */
            iload 5 /* head */
            iload 3 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            putfield com.carrotsearch.hppc.ByteArrayDeque.head:I
        21: .line 397
            goto 30
        22: .line 398
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iload 6 /* tail */
            if_icmpge 25
        23: .line 399
            aload 2 /* buffer */
            iload 1 /* index */
            iconst_1
            iadd
            aload 2 /* buffer */
            iload 1 /* index */
            iload 8 /* rightChunk */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        24: .line 400
            goto 28
        25: .line 401
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            iload 1 /* index */
            iconst_1
            iadd
            aload 2 /* buffer */
            iload 1 /* index */
            iload 4 /* lastIndex */
            iload 1 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        26: .line 402
            aload 2 /* buffer */
            iload 4 /* lastIndex */
            aload 2 /* buffer */
            iconst_0
            baload
            bastore
        27: .line 403
            aload 2 /* buffer */
            iconst_1
            aload 2 /* buffer */
            iconst_0
            iload 6 /* tail */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 405
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            iload 6 /* tail */
            iconst_0
            bastore
        29: .line 406
            aload 0 /* this */
            iload 6 /* tail */
            iload 3 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
        30: .line 408
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int rightChunk
        end local 7 // int leftChunk
        end local 6 // int tail
        end local 5 // int head
        end local 4 // int lastIndex
        end local 3 // int bufLen
        end local 2 // byte[] buffer
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   31     0        this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0   31     1       index  I
            6   31     2      buffer  [B
            7   31     3      bufLen  I
            8   31     4   lastIndex  I
            9   31     5        head  I
           10   31     6        tail  I
           11   31     7   leftChunk  I
           12   31     8  rightChunk  I
    MethodParameters:
       Name  Flags
      index  

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 415
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 423
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmpgt 2
         1: .line 424
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            isub
            ireturn
         2: .line 426
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            isub
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            iadd
            ireturn
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 440
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmpge 3
         1: .line 441
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            iconst_0
            invokestatic java.util.Arrays.fill:([BIIB)V
         2: .line 442
            goto 5
         3: .line 443
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            iconst_0
            invokestatic java.util.Arrays.fill:([BIIB)V
         4: .line 444
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            iconst_0
            invokestatic java.util.Arrays.fill:([BIIB)V
         5: .line 446
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            putfield com.carrotsearch.hppc.ByteArrayDeque.head:I
         6: .line 447
            return
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;

  public void release();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 454
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            putfield com.carrotsearch.hppc.ByteArrayDeque.head:I
         1: .line 455
            aload 0 /* this */
            getstatic com.carrotsearch.hppc.ByteArrayList.EMPTY_ARRAY:[B
            putfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
         2: .line 456
            aload 0 /* this */
            iconst_0
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         3: .line 457
            return
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // int expectedElements
         0: .line 468
            aload 0 /* this */
            iload 1 /* expectedElements */
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            isub
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.ensureBufferSpace:(I)V
         1: .line 469
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    2     1  expectedElements  I
    MethodParameters:
                  Name  Flags
      expectedElements  

  protected void ensureBufferSpace(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // int expectedAdditions
         0: .line 476
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            istore 2 /* bufferLen */
        start local 2 // int bufferLen
         1: .line 477
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            istore 3 /* elementsCount */
        start local 3 // int elementsCount
         2: .line 479
            iload 3 /* elementsCount */
            iload 1 /* expectedAdditions */
            iadd
            iload 2 /* bufferLen */
            if_icmplt 18
         3: .line 481
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.resizer:Lcom/carrotsearch/hppc/ArraySizingStrategy;
            iload 2 /* bufferLen */
            iload 3 /* elementsCount */
            iconst_1
            iadd
            iload 1 /* expectedAdditions */
            invokeinterface com.carrotsearch.hppc.ArraySizingStrategy.grow:(III)I
            istore 4 /* newSize */
        start local 4 // int newSize
         4: .line 482
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 6
            iload 4 /* newSize */
            iload 3 /* elementsCount */
            iload 1 /* expectedAdditions */
            iadd
            iconst_1
            iadd
            if_icmpge 6
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Resizer failed to return sensible new size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         5: .line 483
            iload 4 /* newSize */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " <= "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* elementsCount */
            iload 1 /* expectedAdditions */
            iadd
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         6: .line 486
      StackMap locals: int int int
      StackMap stack:
            iload 4 /* newSize */
            newarray 8
            astore 5 /* newBuffer */
        start local 5 // byte[] newBuffer
         7: .line 487
            iload 2 /* bufferLen */
            ifle 11
         8: .line 488
            aload 0 /* this */
            aload 5 /* newBuffer */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.toArray:([B)[B
            pop
         9: .line 489
            aload 0 /* this */
            iload 3 /* elementsCount */
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
        10: .line 490
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.ByteArrayDeque.head:I
        11: .line 492
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            aload 5 /* newBuffer */
            putfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
        end local 5 // byte[] newBuffer
        12: .line 493
            goto 18
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque int int int int
      StackMap stack: java.lang.OutOfMemoryError
        13: astore 5 /* e */
        start local 5 // java.lang.OutOfMemoryError e
        14: .line 494
            new com.carrotsearch.hppc.BufferAllocationException
            dup
        15: .line 495
            ldc "Not enough memory to allocate new buffers: %,d -> %,d"
        16: .line 496
            aload 5 /* e */
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iload 2 /* bufferLen */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 4 /* newSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
        17: .line 494
            aastore
            invokespecial com.carrotsearch.hppc.BufferAllocationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;[Ljava/lang/Object;)V
            athrow
        end local 5 // java.lang.OutOfMemoryError e
        end local 4 // int newSize
        18: .line 499
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int elementsCount
        end local 2 // int bufferLen
        end local 1 // int expectedAdditions
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   19     0               this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0   19     1  expectedAdditions  I
            1   19     2          bufferLen  I
            2   19     3      elementsCount  I
            4   18     4            newSize  I
            7   12     5          newBuffer  [B
           14   18     5                  e  Ljava/lang/OutOfMemoryError;
      Exception table:
        from    to  target  type
           6    12      13  Class java.lang.OutOfMemoryError
    MethodParameters:
                   Name  Flags
      expectedAdditions  

  public byte[] toArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 508
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 509
            aload 0 /* this */
            iload 1 /* size */
            newarray 8
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.toArray:([B)[B
            areturn
        end local 1 // int size
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            1    2     1  size  I

  public byte[] toArray(byte[]);
    descriptor: ([B)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte[] target
         0: .line 522
            getstatic com.carrotsearch.hppc.ByteArrayDeque.$assertionsDisabled:Z
            ifne 1
            aload 1 /* target */
            arraylength
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            if_icmpge 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Target array must be >= "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmpge 4
         2: .line 526
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 1 /* target */
            iconst_0
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 527
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            if_icmple 8
         5: .line 530
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            arraylength
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            isub
            istore 2 /* rightCount */
        start local 2 // int rightCount
         6: .line 531
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 1 /* target */
            iconst_0
            iload 2 /* rightCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 532
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iconst_0
            aload 1 /* target */
            iload 2 /* rightCount */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 2 // int rightCount
         8: .line 535
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            areturn
        end local 1 // byte[] target
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    9     1      target  [B
            6    8     2  rightCount  I
    MethodParameters:
        Name  Flags
      target  

  public com.carrotsearch.hppc.ByteArrayDeque clone();
    descriptor: ()Lcom/carrotsearch/hppc/ByteArrayDeque;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 546
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.ByteArrayDeque
            astore 1 /* cloned */
        start local 1 // com.carrotsearch.hppc.ByteArrayDeque cloned
         1: .line 547
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
         2: .line 548
            aload 1 /* cloned */
         3: areturn
        end local 1 // com.carrotsearch.hppc.ByteArrayDeque cloned
         4: .line 549
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         5: .line 550
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.CloneNotSupportedException e
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            1    4     1  cloned  Lcom/carrotsearch/hppc/ByteArrayDeque;
            5    6     1       e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.CloneNotSupportedException

  protected static int oneLeft(int, int);
    descriptor: (II)I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int index
        start local 1 // int modulus
         0: .line 558
            iload 0 /* index */
            iconst_1
            if_icmplt 2
         1: .line 559
            iload 0 /* index */
            iconst_1
            isub
            ireturn
         2: .line 561
      StackMap locals:
      StackMap stack:
            iload 1 /* modulus */
            iconst_1
            isub
            ireturn
        end local 1 // int modulus
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0    index  I
            0    3     1  modulus  I
    MethodParameters:
         Name  Flags
      index    
      modulus  

  protected static int oneRight(int, int);
    descriptor: (II)I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int index
        start local 1 // int modulus
         0: .line 568
            iload 0 /* index */
            iconst_1
            iadd
            iload 1 /* modulus */
            if_icmpne 2
         1: .line 569
            iconst_0
            ireturn
         2: .line 571
      StackMap locals:
      StackMap stack:
            iload 0 /* index */
            iconst_1
            iadd
            ireturn
        end local 1 // int modulus
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0    index  I
            0    3     1  modulus  I
    MethodParameters:
         Name  Flags
      index    
      modulus  

  public java.util.Iterator<com.carrotsearch.hppc.cursors.ByteCursor> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 638
            new com.carrotsearch.hppc.ByteArrayDeque$ValueIterator
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.ByteArrayDeque$ValueIterator.<init>:(Lcom/carrotsearch/hppc/ByteArrayDeque;)V
            areturn
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;
    Signature: ()Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/ByteCursor;>;

  public java.util.Iterator<com.carrotsearch.hppc.cursors.ByteCursor> descendingIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 656
            new com.carrotsearch.hppc.ByteArrayDeque$DescendingValueIterator
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.ByteArrayDeque$DescendingValueIterator.<init>:(Lcom/carrotsearch/hppc/ByteArrayDeque;)V
            areturn
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;
    Signature: ()Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/ByteCursor;>;

  public <T extends com.carrotsearch.hppc.procedures.ByteProcedure> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/procedures/ByteProcedure;)Lcom/carrotsearch/hppc/procedures/ByteProcedure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
         0: .line 664
            aload 0 /* this */
            aload 1 /* procedure */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.forEach:(Lcom/carrotsearch/hppc/procedures/ByteProcedure;II)V
         1: .line 665
            aload 1 /* procedure */
            areturn
        end local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    2     1  procedure  TT;
    Signature: <T::Lcom/carrotsearch/hppc/procedures/ByteProcedure;>(TT;)TT;
    MethodParameters:
           Name  Flags
      procedure  

  private void forEach(com.carrotsearch.hppc.procedures.ByteProcedure, int, int);
    descriptor: (Lcom/carrotsearch/hppc/procedures/ByteProcedure;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
        start local 2 // int fromIndex
        start local 3 // int toIndex
         0: .line 673
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         1: .line 674
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         2: goto 5
         3: .line 675
      StackMap locals: byte[] int
      StackMap stack:
            aload 1 /* procedure */
            aload 4 /* buffer */
            iload 5 /* i */
            baload
            invokeinterface com.carrotsearch.hppc.procedures.ByteProcedure.apply:(B)V
         4: .line 674
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 3
        end local 5 // int i
         6: .line 677
            return
        end local 4 // byte[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    7     1  procedure  Lcom/carrotsearch/hppc/procedures/ByteProcedure;
            0    7     2  fromIndex  I
            0    7     3    toIndex  I
            1    7     4     buffer  [B
            2    6     5          i  I
    MethodParameters:
           Name  Flags
      procedure  
      fromIndex  
      toIndex    final

  public <T extends com.carrotsearch.hppc.predicates.BytePredicate> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/predicates/BytePredicate;)Lcom/carrotsearch/hppc/predicates/BytePredicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
         0: .line 684
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            istore 2 /* fromIndex */
        start local 2 // int fromIndex
         1: .line 685
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            istore 3 /* toIndex */
        start local 3 // int toIndex
         2: .line 687
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         3: .line 688
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         4: goto 8
         5: .line 689
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque com.carrotsearch.hppc.predicates.BytePredicate int int byte[] int
      StackMap stack:
            aload 1 /* predicate */
            aload 4 /* buffer */
            iload 5 /* i */
            baload
            invokeinterface com.carrotsearch.hppc.predicates.BytePredicate.apply:(B)Z
            ifne 7
         6: .line 690
            goto 9
         7: .line 688
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 5
        end local 5 // int i
         9: .line 694
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            areturn
        end local 4 // byte[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0   10     1  predicate  TT;
            1   10     2  fromIndex  I
            2   10     3    toIndex  I
            3   10     4     buffer  [B
            4    9     5          i  I
    Signature: <T::Lcom/carrotsearch/hppc/predicates/BytePredicate;>(TT;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public <T extends com.carrotsearch.hppc.procedures.ByteProcedure> T descendingForEach();
    descriptor: (Lcom/carrotsearch/hppc/procedures/ByteProcedure;)Lcom/carrotsearch/hppc/procedures/ByteProcedure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
         0: .line 702
            aload 0 /* this */
            aload 1 /* procedure */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.descendingForEach:(Lcom/carrotsearch/hppc/procedures/ByteProcedure;II)V
         1: .line 703
            aload 1 /* procedure */
            areturn
        end local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    2     1  procedure  TT;
    Signature: <T::Lcom/carrotsearch/hppc/procedures/ByteProcedure;>(TT;)TT;
    MethodParameters:
           Name  Flags
      procedure  

  private void descendingForEach(com.carrotsearch.hppc.procedures.ByteProcedure, int, int);
    descriptor: (Lcom/carrotsearch/hppc/procedures/ByteProcedure;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
        start local 2 // int fromIndex
        start local 3 // int toIndex
         0: .line 711
            iload 2 /* fromIndex */
            iload 3 /* toIndex */
            if_icmpne 2
         1: .line 712
            return
         2: .line 714
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         3: .line 715
            iload 3 /* toIndex */
            istore 5 /* i */
        start local 5 // int i
         4: .line 717
      StackMap locals: byte[] int
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            istore 5 /* i */
         5: .line 718
            aload 1 /* procedure */
            aload 4 /* buffer */
            iload 5 /* i */
            baload
            invokeinterface com.carrotsearch.hppc.procedures.ByteProcedure.apply:(B)V
         6: .line 719
            iload 5 /* i */
            iload 2 /* fromIndex */
            if_icmpne 4
         7: .line 720
            return
        end local 5 // int i
        end local 4 // byte[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.procedures.ByteProcedure procedure
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    8     1  procedure  Lcom/carrotsearch/hppc/procedures/ByteProcedure;
            0    8     2  fromIndex  I
            0    8     3    toIndex  I
            3    8     4     buffer  [B
            4    8     5          i  I
    MethodParameters:
           Name  Flags
      procedure  
      fromIndex  
      toIndex    final

  public <T extends com.carrotsearch.hppc.predicates.BytePredicate> T descendingForEach();
    descriptor: (Lcom/carrotsearch/hppc/predicates/BytePredicate;)Lcom/carrotsearch/hppc/predicates/BytePredicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
         0: .line 727
            aload 0 /* this */
            aload 1 /* predicate */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.descendingForEach:(Lcom/carrotsearch/hppc/predicates/BytePredicate;II)V
         1: .line 728
            aload 1 /* predicate */
            areturn
        end local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    2     1  predicate  TT;
    Signature: <T::Lcom/carrotsearch/hppc/predicates/BytePredicate;>(TT;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  private void descendingForEach(com.carrotsearch.hppc.predicates.BytePredicate, int, int);
    descriptor: (Lcom/carrotsearch/hppc/predicates/BytePredicate;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
        start local 2 // int fromIndex
        start local 3 // int toIndex
         0: .line 737
            iload 2 /* fromIndex */
            iload 3 /* toIndex */
            if_icmpne 2
         1: .line 738
            return
         2: .line 740
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         3: .line 741
            iload 3 /* toIndex */
            istore 5 /* i */
        start local 5 // int i
         4: .line 743
      StackMap locals: byte[] int
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneLeft:(II)I
            istore 5 /* i */
         5: .line 744
            aload 1 /* predicate */
            aload 4 /* buffer */
            iload 5 /* i */
            baload
            invokeinterface com.carrotsearch.hppc.predicates.BytePredicate.apply:(B)Z
            ifne 7
         6: .line 745
            goto 8
         7: .line 747
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 2 /* fromIndex */
            if_icmpne 4
         8: .line 748
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int i
        end local 4 // byte[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    9     1  predicate  Lcom/carrotsearch/hppc/predicates/BytePredicate;
            0    9     2  fromIndex  I
            0    9     3    toIndex  I
            3    9     4     buffer  [B
            4    9     5          i  I
    MethodParameters:
           Name  Flags
      predicate  
      fromIndex  
      toIndex    final

  public int removeAll(com.carrotsearch.hppc.predicates.BytePredicate);
    descriptor: (Lcom/carrotsearch/hppc/predicates/BytePredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
         0: .line 755
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 2 /* buffer */
        start local 2 // byte[] buffer
         1: .line 756
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            istore 3 /* last */
        start local 3 // int last
         2: .line 757
            aload 2 /* buffer */
            arraylength
            istore 4 /* bufLen */
        start local 4 // int bufLen
         3: .line 758
            iconst_0
            istore 5 /* removed */
        start local 5 // int removed
         4: .line 760
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            dup
            istore 7 /* to */
        start local 7 // int to
         5: istore 6 /* from */
        start local 6 // int from
         6: .line 762
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            dup
            istore 7 /* to */
            istore 6 /* from */
            goto 16
         7: .line 763
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque com.carrotsearch.hppc.predicates.BytePredicate byte[] int int int int int
      StackMap stack:
            aload 1 /* predicate */
            aload 2 /* buffer */
            iload 6 /* from */
            baload
            invokeinterface com.carrotsearch.hppc.predicates.BytePredicate.apply:(B)Z
            ifeq 11
         8: .line 764
            aload 2 /* buffer */
            iload 6 /* from */
            iconst_0
            bastore
         9: .line 765
            iinc 5 /* removed */ 1
        10: .line 766
            goto 15
        11: .line 769
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 6 /* from */
            if_icmpeq 14
        12: .line 770
            aload 2 /* buffer */
            iload 7 /* to */
            aload 2 /* buffer */
            iload 6 /* from */
            baload
            bastore
        13: .line 771
            aload 2 /* buffer */
            iload 6 /* from */
            iconst_0
            bastore
        14: .line 774
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 7 /* to */
        15: .line 762
      StackMap locals:
      StackMap stack:
            iload 6 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 6 /* from */
      StackMap locals:
      StackMap stack:
        16: iload 6 /* from */
            iload 3 /* last */
            if_icmpne 7
        17: .line 776
            goto 33
      StackMap locals:
      StackMap stack: java.lang.Throwable
        18: astore 8
        19: .line 778
            goto 25
        20: .line 779
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iload 7 /* to */
            iload 6 /* from */
            if_icmpeq 23
        21: .line 780
            aload 2 /* buffer */
            iload 7 /* to */
            aload 2 /* buffer */
            iload 6 /* from */
            baload
            bastore
        22: .line 781
            aload 2 /* buffer */
            iload 6 /* from */
            iconst_0
            bastore
        23: .line 784
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 7 /* to */
        24: .line 778
            iload 6 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 6 /* from */
      StackMap locals:
      StackMap stack:
        25: iload 6 /* from */
            iload 3 /* last */
            if_icmpne 20
        26: .line 786
            aload 0 /* this */
            iload 7 /* to */
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
        27: .line 787
            aload 8
            athrow
        28: .line 779
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 6 /* from */
            if_icmpeq 31
        29: .line 780
            aload 2 /* buffer */
            iload 7 /* to */
            aload 2 /* buffer */
            iload 6 /* from */
            baload
            bastore
        30: .line 781
            aload 2 /* buffer */
            iload 6 /* from */
            iconst_0
            bastore
        31: .line 784
      StackMap locals:
      StackMap stack:
            iload 7 /* to */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 7 /* to */
        32: .line 778
            iload 6 /* from */
            iload 4 /* bufLen */
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 6 /* from */
      StackMap locals:
      StackMap stack:
        33: iload 6 /* from */
            iload 3 /* last */
            if_icmpne 28
        34: .line 786
            aload 0 /* this */
            iload 7 /* to */
            putfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
        35: .line 789
            iload 5 /* removed */
            ireturn
        end local 7 // int to
        end local 6 // int from
        end local 5 // int removed
        end local 4 // int bufLen
        end local 3 // int last
        end local 2 // byte[] buffer
        end local 1 // com.carrotsearch.hppc.predicates.BytePredicate predicate
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   36     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0   36     1  predicate  Lcom/carrotsearch/hppc/predicates/BytePredicate;
            1   36     2     buffer  [B
            2   36     3       last  I
            3   36     4     bufLen  I
            4   36     5    removed  I
            6   36     6       from  I
            5   36     7         to  I
      Exception table:
        from    to  target  type
           6    18      18  any
    MethodParameters:
           Name  Flags
      predicate  

  public boolean contains(byte);
    descriptor: (B)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // byte e
         0: .line 797
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            istore 2 /* fromIndex */
        start local 2 // int fromIndex
         1: .line 798
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            istore 3 /* toIndex */
        start local 3 // int toIndex
         2: .line 800
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         3: .line 801
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         4: goto 8
         5: .line 802
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque int int int byte[] int
      StackMap stack:
            aload 4 /* buffer */
            iload 5 /* i */
            baload
            iload 1 /* e */
            if_icmpne 7
         6: .line 803
            iconst_1
            ireturn
         7: .line 801
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 5
        end local 5 // int i
         9: .line 807
            iconst_0
            ireturn
        end local 4 // byte[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // byte e
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0   10     1          e  B
            1   10     2  fromIndex  I
            2   10     3    toIndex  I
            3   10     4     buffer  [B
            4    9     5          i  I
    MethodParameters:
      Name  Flags
      e     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
         0: .line 815
            iconst_1
            istore 1 /* h */
        start local 1 // int h
         1: .line 816
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.head:I
            istore 2 /* fromIndex */
        start local 2 // int fromIndex
         2: .line 817
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.tail:I
            istore 3 /* toIndex */
        start local 3 // int toIndex
         3: .line 819
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         4: .line 820
            iload 2 /* fromIndex */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 821
      StackMap locals: com.carrotsearch.hppc.ByteArrayDeque int int int byte[] int
      StackMap stack:
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield com.carrotsearch.hppc.ByteArrayDeque.buffer:[B
            iload 5 /* i */
            baload
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(B)I
            iadd
            istore 1 /* h */
         7: .line 820
            iload 5 /* i */
            aload 4 /* buffer */
            arraylength
            invokestatic com.carrotsearch.hppc.ByteArrayDeque.oneRight:(II)I
            istore 5 /* i */
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 3 /* toIndex */
            if_icmpne 6
        end local 5 // int i
         9: .line 823
            iload 1 /* h */
            ireturn
        end local 4 // byte[] buffer
        end local 3 // int toIndex
        end local 2 // int fromIndex
        end local 1 // int h
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            1   10     1          h  I
            2   10     2  fromIndex  I
            3   10     3    toIndex  I
            4   10     4     buffer  [B
            5    9     5          i  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // java.lang.Object obj
         0: .line 833
            aload 1 /* obj */
            ifnull 4
         1: .line 834
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpne 4
         2: .line 835
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.ByteArrayDeque
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.equalElements:(Lcom/carrotsearch/hppc/ByteArrayDeque;)Z
            ifeq 4
         3: .line 833
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0    5     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  protected boolean equalElements(com.carrotsearch.hppc.ByteArrayDeque);
    descriptor: (Lcom/carrotsearch/hppc/ByteArrayDeque;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.ByteArrayDeque this
        start local 1 // com.carrotsearch.hppc.ByteArrayDeque other
         0: .line 842
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            istore 2 /* max */
        start local 2 // int max
         1: .line 843
            aload 1 /* other */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.size:()I
            iload 2 /* max */
            if_icmpeq 3
         2: .line 844
            iconst_0
            ireturn
         3: .line 847
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.iterator:()Ljava/util/Iterator;
            astore 3 /* i1 */
        start local 3 // java.util.Iterator i1
         4: .line 848
            aload 1 /* other */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.iterator:()Ljava/util/Iterator;
            astore 4 /* i2 */
        start local 4 // java.util.Iterator i2
         5: .line 850
            goto 8
         6: .line 851
      StackMap locals: java.util.Iterator java.util.Iterator
      StackMap stack:
            aload 4 /* i2 */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ByteCursor
            getfield com.carrotsearch.hppc.cursors.ByteCursor.value:B
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.ByteCursor
            getfield com.carrotsearch.hppc.cursors.ByteCursor.value:B
            if_icmpeq 8
         7: .line 852
            iconst_0
            ireturn
         8: .line 850
      StackMap locals:
      StackMap stack:
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 9
            aload 4 /* i2 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 856
      StackMap locals:
      StackMap stack:
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        10: .line 857
            aload 4 /* i2 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        11: .line 856
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        12: iconst_0
            ireturn
        end local 4 // java.util.Iterator i2
        end local 3 // java.util.Iterator i1
        end local 2 // int max
        end local 1 // com.carrotsearch.hppc.ByteArrayDeque other
        end local 0 // com.carrotsearch.hppc.ByteArrayDeque this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lcom/carrotsearch/hppc/ByteArrayDeque;
            0   13     1  other  Lcom/carrotsearch/hppc/ByteArrayDeque;
            1   13     2    max  I
            4   13     3     i1  Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/ByteCursor;>;
            5   13     4     i2  Ljava/util/Iterator<+Lcom/carrotsearch/hppc/cursors/ByteCursor;>;
    MethodParameters:
       Name  Flags
      other  

  public static com.carrotsearch.hppc.ByteArrayDeque from(byte[]);
    descriptor: ([B)Lcom/carrotsearch/hppc/ByteArrayDeque;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // byte[] elements
         0: .line 866
            new com.carrotsearch.hppc.ByteArrayDeque
            dup
            aload 0 /* elements */
            arraylength
            invokespecial com.carrotsearch.hppc.ByteArrayDeque.<init>:(I)V
            astore 1 /* coll */
        start local 1 // com.carrotsearch.hppc.ByteArrayDeque coll
         1: .line 867
            aload 1 /* coll */
            aload 0 /* elements */
            invokevirtual com.carrotsearch.hppc.ByteArrayDeque.addLast:([B)V
         2: .line 868
            aload 1 /* coll */
            areturn
        end local 1 // com.carrotsearch.hppc.ByteArrayDeque coll
        end local 0 // byte[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  elements  [B
            1    3     1      coll  Lcom/carrotsearch/hppc/ByteArrayDeque;
    MethodParameters:
          Name  Flags
      elements  

  public int retainAll(com.carrotsearch.hppc.predicates.BytePredicate);
    descriptor: (Lcom/carrotsearch/hppc/predicates/BytePredicate;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.carrotsearch.hppc.AbstractByteCollection.retainAll:(Lcom/carrotsearch/hppc/predicates/BytePredicate;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int retainAll(com.carrotsearch.hppc.ByteLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/ByteLookupContainer;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.carrotsearch.hppc.AbstractByteCollection.retainAll:(Lcom/carrotsearch/hppc/ByteLookupContainer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.carrotsearch.hppc.AbstractByteCollection.toString:()Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int removeAll(com.carrotsearch.hppc.ByteLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/ByteLookupContainer;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.carrotsearch.hppc.AbstractByteCollection.removeAll:(Lcom/carrotsearch/hppc/ByteLookupContainer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.ByteArrayDeque.clone:()Lcom/carrotsearch/hppc/ByteArrayDeque;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "ByteArrayDeque.java"
NestMembers:
  com.carrotsearch.hppc.ByteArrayDeque$DescendingValueIterator  com.carrotsearch.hppc.ByteArrayDeque$ValueIterator
InnerClasses:
  private final DescendingValueIterator = com.carrotsearch.hppc.ByteArrayDeque$DescendingValueIterator of com.carrotsearch.hppc.ByteArrayDeque
  private final ValueIterator = com.carrotsearch.hppc.ByteArrayDeque$ValueIterator of com.carrotsearch.hppc.ByteArrayDeque