class io.netty.buffer.UnpooledUnsafeHeapByteBuf extends io.netty.buffer.UnpooledHeapByteBuf
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.netty.buffer.UnpooledUnsafeHeapByteBuf
  super_class: io.netty.buffer.UnpooledHeapByteBuf
{
  void <init>(io.netty.buffer.ByteBufAllocator, int, int);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;II)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // io.netty.buffer.ByteBufAllocator alloc
        start local 2 // int initialCapacity
        start local 3 // int maxCapacity
         0: .line 29
            aload 0 /* this */
            aload 1 /* alloc */
            iload 2 /* initialCapacity */
            iload 3 /* maxCapacity */
            invokespecial io.netty.buffer.UnpooledHeapByteBuf.<init>:(Lio/netty/buffer/ByteBufAllocator;II)V
         1: .line 30
            return
        end local 3 // int maxCapacity
        end local 2 // int initialCapacity
        end local 1 // io.netty.buffer.ByteBufAllocator alloc
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1            alloc  Lio/netty/buffer/ByteBufAllocator;
            0    2     2  initialCapacity  I
            0    2     3      maxCapacity  I
    MethodParameters:
                 Name  Flags
      alloc            
      initialCapacity  
      maxCapacity      

  byte[] allocateArray(int);
    descriptor: (I)[B
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int initialCapacity
         0: .line 34
            iload 1 /* initialCapacity */
            invokestatic io.netty.util.internal.PlatformDependent.allocateUninitializedArray:(I)[B
            areturn
        end local 1 // int initialCapacity
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public byte getByte(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 39
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(I)V
         1: .line 40
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected byte _getByte(int);
    descriptor: (I)B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 45
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getByte:([BI)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShort(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 50
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 51
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShort(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 56
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getShort:([BI)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShortLE(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 61
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 62
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getShortLE:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShortLE(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 67
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getShortLE:([BI)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 72
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 73
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getUnsignedMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 78
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getUnsignedMedium:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 83
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 84
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getUnsignedMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 89
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getUnsignedMediumLE:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 94
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 95
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getInt(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 100
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getInt:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getIntLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 105
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 106
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getIntLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getIntLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 111
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getIntLE:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLong(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 116
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 117
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLong(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 122
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getLong:([BI)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLongLE(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 127
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 128
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._getLongLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLongLE(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
         0: .line 133
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.getLongLE:([BI)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public io.netty.buffer.ByteBuf setByte(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 138
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(I)V
         1: .line 139
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setByte:(II)V
         2: .line 140
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setByte(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 145
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setByte:([BII)V
         1: .line 146
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShort(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 150
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 151
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setShort:(II)V
         2: .line 152
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShort(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 157
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setShort:([BII)V
         1: .line 158
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShortLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 162
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 163
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setShortLE:(II)V
         2: .line 164
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShortLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 169
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setShortLE:([BII)V
         1: .line 170
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMedium(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 174
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 175
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setMedium:(II)V
         2: .line 176
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMedium(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 181
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setMedium:([BII)V
         1: .line 182
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMediumLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 186
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 187
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setMediumLE:(II)V
         2: .line 188
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMediumLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 193
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setMediumLE:([BII)V
         1: .line 194
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setInt(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 198
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 199
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setInt:(II)V
         2: .line 200
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setInt(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 205
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setInt:([BII)V
         1: .line 206
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setIntLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 210
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 211
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setIntLE:(II)V
         2: .line 212
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setIntLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 217
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setIntLE:([BII)V
         1: .line 218
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLong(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 222
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 223
            aload 0 /* this */
            iload 1 /* index */
            lload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setLong:(IJ)V
         2: .line 224
            aload 0 /* this */
            areturn
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLong(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 229
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            lload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setLong:([BIJ)V
         1: .line 230
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLongLE(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 234
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         1: .line 235
            aload 0 /* this */
            iload 1 /* index */
            lload 2 /* value */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf._setLongLE:(IJ)V
         2: .line 236
            aload 0 /* this */
            areturn
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    3     1  index  I
            0    3     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLongLE(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 241
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            lload 2 /* value */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setLongLE:([BIJ)V
         1: .line 242
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setZero(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 246
            invokestatic io.netty.util.internal.PlatformDependent.javaVersion:()I
            bipush 7
            if_icmplt 4
         1: .line 248
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.checkIndex:(II)V
         2: .line 249
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 1 /* index */
            iload 2 /* length */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setZero:([BII)V
         3: .line 250
            aload 0 /* this */
            areturn
         4: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokespecial io.netty.buffer.UnpooledHeapByteBuf.setZero:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    5     1   index  I
            0    5     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public io.netty.buffer.ByteBuf writeZero(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
        start local 1 // int length
         0: .line 257
            invokestatic io.netty.util.internal.PlatformDependent.javaVersion:()I
            bipush 7
            if_icmplt 6
         1: .line 259
            aload 0 /* this */
            iload 1 /* length */
            invokevirtual io.netty.buffer.UnpooledUnsafeHeapByteBuf.ensureWritable:(I)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 260
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.writerIndex:I
            istore 2 /* wIndex */
        start local 2 // int wIndex
         3: .line 261
            aload 0 /* this */
            getfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.array:[B
            iload 2 /* wIndex */
            iload 1 /* length */
            invokestatic io.netty.buffer.UnsafeByteBufUtil.setZero:([BII)V
         4: .line 262
            aload 0 /* this */
            iload 2 /* wIndex */
            iload 1 /* length */
            iadd
            putfield io.netty.buffer.UnpooledUnsafeHeapByteBuf.writerIndex:I
         5: .line 263
            aload 0 /* this */
            areturn
        end local 2 // int wIndex
         6: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* length */
            invokespecial io.netty.buffer.UnpooledHeapByteBuf.writeZero:(I)Lio/netty/buffer/ByteBuf;
            areturn
        end local 1 // int length
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
            0    7     1  length  I
            3    6     2  wIndex  I
    MethodParameters:
        Name  Flags
      length  

  protected io.netty.buffer.SwappedByteBuf newSwappedByteBuf();
    descriptor: ()Lio/netty/buffer/SwappedByteBuf;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
         0: .line 271
            invokestatic io.netty.util.internal.PlatformDependent.isUnaligned:()Z
            ifeq 2
         1: .line 273
            new io.netty.buffer.UnsafeHeapSwappedByteBuf
            dup
            aload 0 /* this */
            invokespecial io.netty.buffer.UnsafeHeapSwappedByteBuf.<init>:(Lio/netty/buffer/AbstractByteBuf;)V
            areturn
         2: .line 275
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokespecial io.netty.buffer.UnpooledHeapByteBuf.newSwappedByteBuf:()Lio/netty/buffer/SwappedByteBuf;
            areturn
        end local 0 // io.netty.buffer.UnpooledUnsafeHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/buffer/UnpooledUnsafeHeapByteBuf;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
}
SourceFile: "UnpooledUnsafeHeapByteBuf.java"