public class org.apache.cassandra.utils.ByteBufferUtil
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.cassandra.utils.ByteBufferUtil
  super_class: java.lang.Object
{
  public static final java.nio.ByteBuffer EMPTY_BYTE_BUFFER;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.nio.ByteBuffer UNSET_BYTE_BUFFER;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, 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 80
            ldc Lorg/apache/cassandra/utils/ByteBufferUtil;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
         3: .line 82
            iconst_0
            newarray 8
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            putstatic org.apache.cassandra.utils.ByteBufferUtil.EMPTY_BYTE_BUFFER:Ljava/nio/ByteBuffer;
         4: .line 84
            iconst_0
            newarray 8
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            putstatic org.apache.cassandra.utils.ByteBufferUtil.UNSET_BYTE_BUFFER:Ljava/nio/ByteBuffer;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.cassandra.utils.ByteBufferUtil this
         0: .line 80
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.cassandra.utils.ByteBufferUtil this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/cassandra/utils/ByteBufferUtil;

  public static int compareUnsigned(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
         0: .line 86
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tInline cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    RuntimeInvisibleAnnotations: 
      Inline()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        Inline()
    MethodParameters:
      Name  Flags
      o1    
      o2    

  public static int compare(byte[], java.nio.ByteBuffer);
    descriptor: ([BLjava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
         0: .line 92
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tInline cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    RuntimeInvisibleAnnotations: 
      Inline()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        Inline()
    MethodParameters:
      Name  Flags
      o1    
      o2    

  public static int compare(java.nio.ByteBuffer, byte[]);
    descriptor: (Ljava/nio/ByteBuffer;[B)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
         0: .line 98
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tInline cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    RuntimeInvisibleAnnotations: 
      Inline()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        Inline()
    MethodParameters:
      Name  Flags
      o1    
      o2    

  public static java.lang.String string(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer buffer
         0: .line 113
            aload 0 /* buffer */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.string:(Ljava/nio/ByteBuffer;Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  buffer  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.nio.charset.CharacterCodingException
    MethodParameters:
        Name  Flags
      buffer  

  public static java.lang.String string(java.nio.ByteBuffer, int, int);
    descriptor: (Ljava/nio/ByteBuffer;II)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.nio.ByteBuffer buffer
        start local 1 // int position
        start local 2 // int length
         0: .line 127
            aload 0 /* buffer */
            iload 1 /* position */
            iload 2 /* length */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.string:(Ljava/nio/ByteBuffer;IILjava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 2 // int length
        end local 1 // int position
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0    buffer  Ljava/nio/ByteBuffer;
            0    1     1  position  I
            0    1     2    length  I
    Exceptions:
      throws java.nio.charset.CharacterCodingException
    MethodParameters:
          Name  Flags
      buffer    
      position  
      length    

  public static java.lang.String string(java.nio.ByteBuffer, int, int, java.nio.charset.Charset);
    descriptor: (Ljava/nio/ByteBuffer;IILjava/nio/charset/Charset;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // java.nio.ByteBuffer buffer
        start local 1 // int position
        start local 2 // int length
        start local 3 // java.nio.charset.Charset charset
         0: .line 141
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 4 /* copy */
        start local 4 // java.nio.ByteBuffer copy
         1: .line 142
            aload 4 /* copy */
            iload 1 /* position */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         2: .line 143
            aload 4 /* copy */
            aload 4 /* copy */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 2 /* length */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
         3: .line 144
            aload 4 /* copy */
            aload 3 /* charset */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.string:(Ljava/nio/ByteBuffer;Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 4 // java.nio.ByteBuffer copy
        end local 3 // java.nio.charset.Charset charset
        end local 2 // int length
        end local 1 // int position
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0    buffer  Ljava/nio/ByteBuffer;
            0    4     1  position  I
            0    4     2    length  I
            0    4     3   charset  Ljava/nio/charset/Charset;
            1    4     4      copy  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.nio.charset.CharacterCodingException
    MethodParameters:
          Name  Flags
      buffer    
      position  
      length    
      charset   

  public static java.lang.String string(java.nio.ByteBuffer, java.nio.charset.Charset);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/charset/Charset;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer buffer
        start local 1 // java.nio.charset.Charset charset
         0: .line 156
            aload 1 /* charset */
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            invokevirtual java.nio.charset.CharsetDecoder.decode:(Ljava/nio/ByteBuffer;)Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.nio.charset.Charset charset
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0   buffer  Ljava/nio/ByteBuffer;
            0    1     1  charset  Ljava/nio/charset/Charset;
    Exceptions:
      throws java.nio.charset.CharacterCodingException
    MethodParameters:
         Name  Flags
      buffer   
      charset  

  public static byte[] getArray(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // java.nio.ByteBuffer buffer
         0: .line 164
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 1 /* length */
        start local 1 // int length
         1: .line 165
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 4
         2: .line 167
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            istore 2 /* boff */
        start local 2 // int boff
         3: .line 168
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            iload 2 /* boff */
            iload 2 /* boff */
            iload 1 /* length */
            iadd
            invokestatic java.util.Arrays.copyOfRange:([BII)[B
            areturn
        end local 2 // int boff
         4: .line 171
      StackMap locals: int
      StackMap stack:
            iload 1 /* length */
            newarray 8
            astore 2 /* bytes */
        start local 2 // byte[] bytes
         5: .line 172
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            aload 2 /* bytes */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         6: .line 174
            aload 2 /* bytes */
            areturn
        end local 2 // byte[] bytes
        end local 1 // int length
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  buffer  Ljava/nio/ByteBuffer;
            1    7     1  length  I
            3    4     2    boff  I
            5    7     2   bytes  [B
    MethodParameters:
        Name  Flags
      buffer  

  public static int lastIndexOf(java.nio.ByteBuffer, byte, int);
    descriptor: (Ljava/nio/ByteBuffer;BI)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // java.nio.ByteBuffer buffer
        start local 1 // byte valueToFind
        start local 2 // int startIndex
         0: .line 188
            getstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
            ifne 1
            aload 0 /* buffer */
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 190
      StackMap locals:
      StackMap stack:
            iload 2 /* startIndex */
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            if_icmpge 3
         2: .line 192
            iconst_m1
            ireturn
         3: .line 194
      StackMap locals:
      StackMap stack:
            iload 2 /* startIndex */
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.limit:()I
            if_icmplt 5
         4: .line 196
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iconst_1
            isub
            istore 2 /* startIndex */
         5: .line 199
      StackMap locals:
      StackMap stack:
            iload 2 /* startIndex */
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 201
      StackMap locals: int
      StackMap stack:
            iload 1 /* valueToFind */
            aload 0 /* buffer */
            iload 3 /* i */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            if_icmpne 9
         8: .line 202
            iload 3 /* i */
            ireturn
         9: .line 199
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            if_icmpge 7
        end local 3 // int i
        11: .line 205
            iconst_m1
            ireturn
        end local 2 // int startIndex
        end local 1 // byte valueToFind
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0       buffer  Ljava/nio/ByteBuffer;
            0   12     1  valueToFind  B
            0   12     2   startIndex  I
            6   11     3            i  I
    MethodParameters:
             Name  Flags
      buffer       
      valueToFind  
      startIndex   

  public static java.nio.ByteBuffer bytes(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String s
         0: .line 216
            aload 0 /* s */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     

  public static java.nio.ByteBuffer bytes(java.lang.String, java.nio.charset.Charset);
    descriptor: (Ljava/lang/String;Ljava/nio/charset/Charset;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.String s
        start local 1 // java.nio.charset.Charset charset
         0: .line 228
            aload 0 /* s */
            aload 1 /* charset */
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            areturn
        end local 1 // java.nio.charset.Charset charset
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0        s  Ljava/lang/String;
            0    1     1  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      s        
      charset  

  public static java.nio.ByteBuffer clone(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer buffer
         0: .line 238
            getstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
            ifne 1
            aload 0 /* buffer */
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ifne 3
         2: .line 241
            getstatic org.apache.cassandra.utils.ByteBufferUtil.EMPTY_BYTE_BUFFER:Ljava/nio/ByteBuffer;
            areturn
         3: .line 243
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 1 /* clone */
        start local 1 // java.nio.ByteBuffer clone
         4: .line 245
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 7
         5: .line 247
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            aload 1 /* clone */
            invokevirtual java.nio.ByteBuffer.array:()[B
            iconst_0
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 248
            goto 9
         7: .line 251
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 1 /* clone */
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.put:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            pop
         8: .line 252
            aload 1 /* clone */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/Buffer;
            pop
         9: .line 255
      StackMap locals:
      StackMap stack:
            aload 1 /* clone */
            areturn
        end local 1 // java.nio.ByteBuffer clone
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0  buffer  Ljava/nio/ByteBuffer;
            4   10     1   clone  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  

  public static void arrayCopy(java.nio.ByteBuffer, int, byte[], int, int);
    descriptor: (Ljava/nio/ByteBuffer;I[BII)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // java.nio.ByteBuffer src
        start local 1 // int srcPos
        start local 2 // byte[] dst
        start local 3 // int dstPos
        start local 4 // int length
         0: .line 260
            aload 0 /* src */
            iload 1 /* srcPos */
            aload 2 /* dst */
            iload 3 /* dstPos */
            iload 4 /* length */
            invokestatic org.apache.cassandra.utils.FastByteOperations.copy:(Ljava/nio/ByteBuffer;I[BII)V
         1: .line 261
            return
        end local 4 // int length
        end local 3 // int dstPos
        end local 2 // byte[] dst
        end local 1 // int srcPos
        end local 0 // java.nio.ByteBuffer src
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0     src  Ljava/nio/ByteBuffer;
            0    2     1  srcPos  I
            0    2     2     dst  [B
            0    2     3  dstPos  I
            0    2     4  length  I
    MethodParameters:
        Name  Flags
      src     
      srcPos  
      dst     
      dstPos  
      length  

  public static void arrayCopy(java.nio.ByteBuffer, int, java.nio.ByteBuffer, int, int);
    descriptor: (Ljava/nio/ByteBuffer;ILjava/nio/ByteBuffer;II)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // java.nio.ByteBuffer src
        start local 1 // int srcPos
        start local 2 // java.nio.ByteBuffer dst
        start local 3 // int dstPos
        start local 4 // int length
         0: .line 275
            aload 0 /* src */
            iload 1 /* srcPos */
            aload 2 /* dst */
            iload 3 /* dstPos */
            iload 4 /* length */
            invokestatic org.apache.cassandra.utils.FastByteOperations.copy:(Ljava/nio/ByteBuffer;ILjava/nio/ByteBuffer;II)V
         1: .line 276
            return
        end local 4 // int length
        end local 3 // int dstPos
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // int srcPos
        end local 0 // java.nio.ByteBuffer src
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0     src  Ljava/nio/ByteBuffer;
            0    2     1  srcPos  I
            0    2     2     dst  Ljava/nio/ByteBuffer;
            0    2     3  dstPos  I
            0    2     4  length  I
    MethodParameters:
        Name  Flags
      src     
      srcPos  
      dst     
      dstPos  
      length  

  public static int put(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer src
        start local 1 // java.nio.ByteBuffer trg
         0: .line 280
            aload 0 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 1 /* trg */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 2 /* length */
        start local 2 // int length
         1: .line 281
            aload 0 /* src */
            aload 0 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 1 /* trg */
            aload 1 /* trg */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 2 /* length */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.arrayCopy:(Ljava/nio/ByteBuffer;ILjava/nio/ByteBuffer;II)V
         2: .line 282
            aload 1 /* trg */
            aload 1 /* trg */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 2 /* length */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         3: .line 283
            aload 0 /* src */
            aload 0 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 2 /* length */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         4: .line 284
            iload 2 /* length */
            ireturn
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer trg
        end local 0 // java.nio.ByteBuffer src
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0     src  Ljava/nio/ByteBuffer;
            0    5     1     trg  Ljava/nio/ByteBuffer;
            1    5     2  length  I
    MethodParameters:
      Name  Flags
      src   
      trg   

  public static void writeWithLength(java.nio.ByteBuffer, org.apache.cassandra.io.util.DataOutputPlus);
    descriptor: (Ljava/nio/ByteBuffer;Lorg/apache/cassandra/io/util/DataOutputPlus;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer bytes
        start local 1 // org.apache.cassandra.io.util.DataOutputPlus out
         0: .line 289
            aload 1 /* out */
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokeinterface org.apache.cassandra.io.util.DataOutputPlus.writeInt:(I)V
         1: .line 290
            aload 1 /* out */
            aload 0 /* bytes */
            invokeinterface org.apache.cassandra.io.util.DataOutputPlus.write:(Ljava/nio/ByteBuffer;)V
         2: .line 291
            return
        end local 1 // org.apache.cassandra.io.util.DataOutputPlus out
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  bytes  Ljava/nio/ByteBuffer;
            0    3     1    out  Lorg/apache/cassandra/io/util/DataOutputPlus;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  
      out    

  public static void writeWithVIntLength(java.nio.ByteBuffer, org.apache.cassandra.io.util.DataOutputPlus);
    descriptor: (Ljava/nio/ByteBuffer;Lorg/apache/cassandra/io/util/DataOutputPlus;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer bytes
        start local 1 // org.apache.cassandra.io.util.DataOutputPlus out
         0: .line 295
            aload 1 /* out */
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            i2l
            invokeinterface org.apache.cassandra.io.util.DataOutputPlus.writeUnsignedVInt:(J)V
         1: .line 296
            aload 1 /* out */
            aload 0 /* bytes */
            invokeinterface org.apache.cassandra.io.util.DataOutputPlus.write:(Ljava/nio/ByteBuffer;)V
         2: .line 297
            return
        end local 1 // org.apache.cassandra.io.util.DataOutputPlus out
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  bytes  Ljava/nio/ByteBuffer;
            0    3     1    out  Lorg/apache/cassandra/io/util/DataOutputPlus;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  
      out    

  public static void writeWithLength(byte[], java.io.DataOutput);
    descriptor: ([BLjava/io/DataOutput;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // byte[] bytes
        start local 1 // java.io.DataOutput out
         0: .line 301
            aload 1 /* out */
            aload 0 /* bytes */
            arraylength
            invokeinterface java.io.DataOutput.writeInt:(I)V
         1: .line 302
            aload 1 /* out */
            aload 0 /* bytes */
            invokeinterface java.io.DataOutput.write:([B)V
         2: .line 303
            return
        end local 1 // java.io.DataOutput out
        end local 0 // byte[] bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  bytes  [B
            0    3     1    out  Ljava/io/DataOutput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  
      out    

  public static void writeWithShortLength(java.nio.ByteBuffer, org.apache.cassandra.io.util.DataOutputPlus);
    descriptor: (Ljava/nio/ByteBuffer;Lorg/apache/cassandra/io/util/DataOutputPlus;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer buffer
        start local 1 // org.apache.cassandra.io.util.DataOutputPlus out
         0: .line 307
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* length */
        start local 2 // int length
         1: .line 308
            getstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
            ifne 4
            iload 2 /* length */
            iflt 2
            iload 2 /* length */
            ldc 65535
            if_icmple 4
      StackMap locals: int
      StackMap stack:
         2: new java.lang.AssertionError
            dup
         3: .line 309
            ldc "Attempted serializing to buffer exceeded maximum of %s bytes: %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            ldc 65535
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 2 /* length */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         4: .line 310
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iload 2 /* length */
            invokeinterface org.apache.cassandra.io.util.DataOutputPlus.writeShort:(I)V
         5: .line 311
            aload 1 /* out */
            aload 0 /* buffer */
            invokeinterface org.apache.cassandra.io.util.DataOutputPlus.write:(Ljava/nio/ByteBuffer;)V
         6: .line 312
            return
        end local 2 // int length
        end local 1 // org.apache.cassandra.io.util.DataOutputPlus out
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  buffer  Ljava/nio/ByteBuffer;
            0    7     1     out  Lorg/apache/cassandra/io/util/DataOutputPlus;
            1    7     2  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      buffer  
      out     

  public static void writeWithShortLength(byte[], java.io.DataOutput);
    descriptor: ([BLjava/io/DataOutput;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // byte[] buffer
        start local 1 // java.io.DataOutput out
         0: .line 316
            aload 0 /* buffer */
            arraylength
            istore 2 /* length */
        start local 2 // int length
         1: .line 317
            getstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
            ifne 4
            iload 2 /* length */
            iflt 2
            iload 2 /* length */
            ldc 65535
            if_icmple 4
      StackMap locals: int
      StackMap stack:
         2: new java.lang.AssertionError
            dup
         3: .line 318
            ldc "Attempted serializing to buffer exceeded maximum of %s bytes: %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            ldc 65535
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 2 /* length */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         4: .line 319
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iload 2 /* length */
            invokeinterface java.io.DataOutput.writeShort:(I)V
         5: .line 320
            aload 1 /* out */
            aload 0 /* buffer */
            invokeinterface java.io.DataOutput.write:([B)V
         6: .line 321
            return
        end local 2 // int length
        end local 1 // java.io.DataOutput out
        end local 0 // byte[] buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  buffer  [B
            0    7     1     out  Ljava/io/DataOutput;
            1    7     2  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      buffer  
      out     

  public static java.nio.ByteBuffer readWithLength(java.io.DataInput);
    descriptor: (Ljava/io/DataInput;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.io.DataInput in
         0: .line 325
            aload 0 /* in */
            invokeinterface java.io.DataInput.readInt:()I
            istore 1 /* length */
        start local 1 // int length
         1: .line 326
            iload 1 /* length */
            ifge 3
         2: .line 328
            new java.io.IOException
            dup
            ldc "Corrupt (negative) value length encountered"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 331
      StackMap locals: int
      StackMap stack:
            aload 0 /* in */
            iload 1 /* length */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.read:(Ljava/io/DataInput;I)Ljava/nio/ByteBuffer;
            areturn
        end local 1 // int length
        end local 0 // java.io.DataInput in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0      in  Ljava/io/DataInput;
            1    4     1  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static java.nio.ByteBuffer readWithVIntLength(org.apache.cassandra.io.util.DataInputPlus);
    descriptor: (Lorg/apache/cassandra/io/util/DataInputPlus;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.cassandra.io.util.DataInputPlus in
         0: .line 336
            aload 0 /* in */
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readUnsignedVInt:()J
            l2i
            istore 1 /* length */
        start local 1 // int length
         1: .line 337
            iload 1 /* length */
            ifge 3
         2: .line 338
            new java.io.IOException
            dup
            ldc "Corrupt (negative) value length encountered"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 340
      StackMap locals: int
      StackMap stack:
            aload 0 /* in */
            iload 1 /* length */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.read:(Ljava/io/DataInput;I)Ljava/nio/ByteBuffer;
            areturn
        end local 1 // int length
        end local 0 // org.apache.cassandra.io.util.DataInputPlus in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0      in  Lorg/apache/cassandra/io/util/DataInputPlus;
            1    4     1  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static int serializedSizeWithLength(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer buffer
         0: .line 345
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 346
            iload 1 /* size */
            invokestatic org.apache.cassandra.db.TypeSizes.sizeof:(I)I
            iload 1 /* size */
            iadd
            ireturn
        end local 1 // int size
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  buffer  Ljava/nio/ByteBuffer;
            1    2     1    size  I
    MethodParameters:
        Name  Flags
      buffer  

  public static int serializedSizeWithVIntLength(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer buffer
         0: .line 351
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 352
            iload 1 /* size */
            i2l
            invokestatic org.apache.cassandra.db.TypeSizes.sizeofUnsignedVInt:(J)I
            iload 1 /* size */
            iadd
            ireturn
        end local 1 // int size
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  buffer  Ljava/nio/ByteBuffer;
            1    2     1    size  I
    MethodParameters:
        Name  Flags
      buffer  

  public static void skipWithVIntLength(org.apache.cassandra.io.util.DataInputPlus);
    descriptor: (Lorg/apache/cassandra/io/util/DataInputPlus;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.cassandra.io.util.DataInputPlus in
         0: .line 357
            aload 0 /* in */
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.readUnsignedVInt:()J
            l2i
            istore 1 /* length */
        start local 1 // int length
         1: .line 358
            iload 1 /* length */
            ifge 3
         2: .line 359
            new java.io.IOException
            dup
            ldc "Corrupt (negative) value length encountered"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 361
      StackMap locals: int
      StackMap stack:
            aload 0 /* in */
            iload 1 /* length */
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.skipBytesFully:(I)V
         4: .line 362
            return
        end local 1 // int length
        end local 0 // org.apache.cassandra.io.util.DataInputPlus in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0      in  Lorg/apache/cassandra/io/util/DataInputPlus;
            1    5     1  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static int readShortLength(java.io.DataInput);
    descriptor: (Ljava/io/DataInput;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.DataInput in
         0: .line 367
            aload 0 /* in */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            ireturn
        end local 0 // java.io.DataInput in
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    in  Ljava/io/DataInput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static java.nio.ByteBuffer readWithShortLength(java.io.DataInput);
    descriptor: (Ljava/io/DataInput;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.DataInput in
         0: .line 377
            aload 0 /* in */
            aload 0 /* in */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.readShortLength:(Ljava/io/DataInput;)I
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.read:(Ljava/io/DataInput;I)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // java.io.DataInput in
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    in  Ljava/io/DataInput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static int serializedSizeWithShortLength(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer buffer
         0: .line 382
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 383
            iload 1 /* size */
            i2s
            invokestatic org.apache.cassandra.db.TypeSizes.sizeof:(S)I
            iload 1 /* size */
            iadd
            ireturn
        end local 1 // int size
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  buffer  Ljava/nio/ByteBuffer;
            1    2     1    size  I
    MethodParameters:
        Name  Flags
      buffer  

  public static void skipShortLength(org.apache.cassandra.io.util.DataInputPlus);
    descriptor: (Lorg/apache/cassandra/io/util/DataInputPlus;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.cassandra.io.util.DataInputPlus in
         0: .line 392
            aload 0 /* in */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.readShortLength:(Ljava/io/DataInput;)I
            istore 1 /* skip */
        start local 1 // int skip
         1: .line 393
            aload 0 /* in */
            iload 1 /* skip */
            invokeinterface org.apache.cassandra.io.util.DataInputPlus.skipBytesFully:(I)V
         2: .line 394
            return
        end local 1 // int skip
        end local 0 // org.apache.cassandra.io.util.DataInputPlus in
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    in  Lorg/apache/cassandra/io/util/DataInputPlus;
            1    3     1  skip  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static java.nio.ByteBuffer read(java.io.DataInput, int);
    descriptor: (Ljava/io/DataInput;I)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.io.DataInput in
        start local 1 // int length
         0: .line 398
            iload 1 /* length */
            ifne 2
         1: .line 399
            getstatic org.apache.cassandra.utils.ByteBufferUtil.EMPTY_BYTE_BUFFER:Ljava/nio/ByteBuffer;
            areturn
         2: .line 401
      StackMap locals:
      StackMap stack:
            iload 1 /* length */
            newarray 8
            astore 2 /* buff */
        start local 2 // byte[] buff
         3: .line 402
            aload 0 /* in */
            aload 2 /* buff */
            invokeinterface java.io.DataInput.readFully:([B)V
         4: .line 403
            aload 2 /* buff */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            areturn
        end local 2 // byte[] buff
        end local 1 // int length
        end local 0 // java.io.DataInput in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0      in  Ljava/io/DataInput;
            0    5     1  length  I
            3    5     2    buff  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      length  

  public static byte[] readBytes(java.io.DataInput, int);
    descriptor: (Ljava/io/DataInput;I)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.io.DataInput in
        start local 1 // int length
         0: .line 408
            getstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
            ifne 1
            iload 1 /* length */
            ifgt 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "length is not > 0: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* length */
            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 409
      StackMap locals:
      StackMap stack:
            iload 1 /* length */
            newarray 8
            astore 2 /* bytes */
        start local 2 // byte[] bytes
         2: .line 410
            aload 0 /* in */
            aload 2 /* bytes */
            invokeinterface java.io.DataInput.readFully:([B)V
         3: .line 411
            aload 2 /* bytes */
            areturn
        end local 2 // byte[] bytes
        end local 1 // int length
        end local 0 // java.io.DataInput in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0      in  Ljava/io/DataInput;
            0    4     1  length  I
            2    4     2   bytes  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      length  

  public static int toInt(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer bytes
         0: .line 423
            aload 0 /* bytes */
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  bytes  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      bytes  

  public static short toShort(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)S
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer bytes
         0: .line 435
            aload 0 /* bytes */
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.ByteBuffer.getShort:(I)S
            ireturn
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  bytes  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      bytes  

  public static long toLong(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer bytes
         0: .line 440
            aload 0 /* bytes */
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.ByteBuffer.getLong:(I)J
            lreturn
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  bytes  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      bytes  

  public static float toFloat(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)F
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer bytes
         0: .line 445
            aload 0 /* bytes */
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.ByteBuffer.getFloat:(I)F
            freturn
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  bytes  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      bytes  

  public static double toDouble(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer bytes
         0: .line 450
            aload 0 /* bytes */
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.ByteBuffer.getDouble:(I)D
            dreturn
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  bytes  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      bytes  

  public static java.nio.ByteBuffer objectToBytes(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // java.lang.Object obj
         0: .line 455
            aload 0 /* obj */
            instanceof java.lang.Integer
            ifeq 2
         1: .line 456
            aload 0 /* obj */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(I)Ljava/nio/ByteBuffer;
            areturn
         2: .line 457
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.lang.Byte
            ifeq 4
         3: .line 458
            aload 0 /* obj */
            checkcast java.lang.Byte
            invokevirtual java.lang.Byte.byteValue:()B
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(B)Ljava/nio/ByteBuffer;
            areturn
         4: .line 459
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.lang.Short
            ifeq 6
         5: .line 460
            aload 0 /* obj */
            checkcast java.lang.Short
            invokevirtual java.lang.Short.shortValue:()S
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(S)Ljava/nio/ByteBuffer;
            areturn
         6: .line 461
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.lang.Long
            ifeq 8
         7: .line 462
            aload 0 /* obj */
            checkcast java.lang.Long
            invokevirtual java.lang.Long.longValue:()J
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(J)Ljava/nio/ByteBuffer;
            areturn
         8: .line 463
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.lang.Float
            ifeq 10
         9: .line 464
            aload 0 /* obj */
            checkcast java.lang.Float
            invokevirtual java.lang.Float.floatValue:()F
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(F)Ljava/nio/ByteBuffer;
            areturn
        10: .line 465
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.lang.Double
            ifeq 12
        11: .line 466
            aload 0 /* obj */
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(D)Ljava/nio/ByteBuffer;
            areturn
        12: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.util.UUID
            ifeq 14
        13: .line 468
            aload 0 /* obj */
            checkcast java.util.UUID
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(Ljava/util/UUID;)Ljava/nio/ByteBuffer;
            areturn
        14: .line 469
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.net.InetAddress
            ifeq 16
        15: .line 470
            aload 0 /* obj */
            checkcast java.net.InetAddress
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(Ljava/net/InetAddress;)Ljava/nio/ByteBuffer;
            areturn
        16: .line 471
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof java.lang.String
            ifeq 18
        17: .line 472
            aload 0 /* obj */
            checkcast java.lang.String
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.bytes:(Ljava/lang/String;)Ljava/nio/ByteBuffer;
            areturn
        18: .line 474
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Cannot convert value %s of type %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
        19: .line 475
            aload 0 /* obj */
            aastore
            dup
            iconst_1
        20: .line 476
            aload 0 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aastore
        21: .line 474
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // java.lang.Object obj
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public static java.nio.ByteBuffer bytes(byte);
    descriptor: (B)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // byte b
         0: .line 481
            iconst_1
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            iconst_0
            iload 0 /* b */
            invokevirtual java.nio.ByteBuffer.put:(IB)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     b  B
    MethodParameters:
      Name  Flags
      b     

  public static java.nio.ByteBuffer bytes(short);
    descriptor: (S)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // short s
         0: .line 486
            iconst_2
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            iconst_0
            iload 0 /* s */
            invokevirtual java.nio.ByteBuffer.putShort:(IS)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // short s
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     s  S
    MethodParameters:
      Name  Flags
      s     

  public static java.nio.ByteBuffer bytes(int);
    descriptor: (I)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int i
         0: .line 491
            iconst_4
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            iconst_0
            iload 0 /* i */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // int i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     i  I
    MethodParameters:
      Name  Flags
      i     

  public static java.nio.ByteBuffer bytes(long);
    descriptor: (J)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long n
         0: .line 496
            bipush 8
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            iconst_0
            lload 0 /* n */
            invokevirtual java.nio.ByteBuffer.putLong:(IJ)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // long n
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     n  J
    MethodParameters:
      Name  Flags
      n     

  public static java.nio.ByteBuffer bytes(float);
    descriptor: (F)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // float f
         0: .line 501
            iconst_4
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            iconst_0
            fload 0 /* f */
            invokevirtual java.nio.ByteBuffer.putFloat:(IF)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // float f
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     f  F
    MethodParameters:
      Name  Flags
      f     

  public static java.nio.ByteBuffer bytes(double);
    descriptor: (D)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double d
         0: .line 506
            bipush 8
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            iconst_0
            dload 0 /* d */
            invokevirtual java.nio.ByteBuffer.putDouble:(ID)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // double d
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     d  D
    MethodParameters:
      Name  Flags
      d     

  public static java.io.InputStream inputStream(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/io/InputStream;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer bytes
         0: .line 511
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 1 /* copy */
        start local 1 // java.nio.ByteBuffer copy
         1: .line 513
            new org.apache.cassandra.utils.ByteBufferUtil$1
            dup
            aload 1 /* copy */
            invokespecial org.apache.cassandra.utils.ByteBufferUtil$1.<init>:(Ljava/nio/ByteBuffer;)V
            areturn
        end local 1 // java.nio.ByteBuffer copy
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  bytes  Ljava/nio/ByteBuffer;
            1    2     1   copy  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      bytes  

  public static java.lang.String bytesToHex(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // java.nio.ByteBuffer bytes
         0: .line 548
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 2
         1: .line 550
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.array:()[B
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic org.apache.cassandra.utils.Hex.bytesToHex:([BII)Ljava/lang/String;
            areturn
         2: .line 553
      StackMap locals:
      StackMap stack:
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 1 /* offset */
        start local 1 // int offset
         3: .line 554
            aload 0 /* bytes */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* size */
        start local 2 // int size
         4: .line 555
            iload 2 /* size */
            iconst_2
            imul
            newarray 5
            astore 3 /* c */
        start local 3 // char[] c
         5: .line 556
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 11
         7: .line 558
      StackMap locals: java.nio.ByteBuffer int int char[] int
      StackMap stack:
            aload 0 /* bytes */
            iload 4 /* i */
            iload 1 /* offset */
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 5 /* bint */
        start local 5 // int bint
         8: .line 559
            aload 3 /* c */
            iload 4 /* i */
            iconst_2
            imul
            getstatic org.apache.cassandra.utils.Hex.byteToChar:[C
            iload 5 /* bint */
            sipush 240
            iand
            iconst_4
            ishr
            caload
            castore
         9: .line 560
            aload 3 /* c */
            iconst_1
            iload 4 /* i */
            iconst_2
            imul
            iadd
            getstatic org.apache.cassandra.utils.Hex.byteToChar:[C
            iload 5 /* bint */
            bipush 15
            iand
            caload
            castore
        end local 5 // int bint
        10: .line 556
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 4 /* i */
            iload 2 /* size */
            if_icmplt 7
        end local 4 // int i
        12: .line 562
            aload 3 /* c */
            invokestatic org.apache.cassandra.utils.Hex.wrapCharArray:([C)Ljava/lang/String;
            areturn
        end local 3 // char[] c
        end local 2 // int size
        end local 1 // int offset
        end local 0 // java.nio.ByteBuffer bytes
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0   bytes  Ljava/nio/ByteBuffer;
            3   13     1  offset  I
            4   13     2    size  I
            5   13     3       c  [C
            6   12     4       i  I
            8   10     5    bint  I
    MethodParameters:
       Name  Flags
      bytes  

  public static java.nio.ByteBuffer hexToBytes(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.String str
         0: .line 567
            aload 0 /* str */
            invokestatic org.apache.cassandra.utils.Hex.hexToBytes:(Ljava/lang/String;)[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   

  public static int compareSubArrays(java.nio.ByteBuffer, int, java.nio.ByteBuffer, int, int);
    descriptor: (Ljava/nio/ByteBuffer;ILjava/nio/ByteBuffer;II)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=8, args_size=5
        start local 0 // java.nio.ByteBuffer bytes1
        start local 1 // int offset1
        start local 2 // java.nio.ByteBuffer bytes2
        start local 3 // int offset2
        start local 4 // int length
         0: .line 582
            aload 0 /* bytes1 */
            ifnonnull 4
         1: .line 583
            aload 2 /* bytes2 */
            ifnonnull 2
            iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_m1
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 584
      StackMap locals:
      StackMap stack:
            aload 2 /* bytes2 */
            ifnonnull 5
            iconst_1
            ireturn
         5: .line 586
      StackMap locals:
      StackMap stack:
            getstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
            ifne 6
            aload 0 /* bytes1 */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iload 1 /* offset1 */
            iload 4 /* length */
            iadd
            if_icmpge 6
            new java.lang.AssertionError
            dup
            ldc "The first byte array isn't long enough for the specified offset and length."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         6: .line 587
      StackMap locals:
      StackMap stack:
            getstatic org.apache.cassandra.utils.ByteBufferUtil.$assertionsDisabled:Z
            ifne 7
            aload 2 /* bytes2 */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iload 3 /* offset2 */
            iload 4 /* length */
            iadd
            if_icmpge 7
            new java.lang.AssertionError
            dup
            ldc "The second byte array isn't long enough for the specified offset and length."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 588
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         8: goto 17
         9: .line 590
      StackMap locals: int
      StackMap stack:
            aload 0 /* bytes1 */
            iload 1 /* offset1 */
            iload 5 /* i */
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 6 /* byte1 */
        start local 6 // byte byte1
        10: .line 591
            aload 2 /* bytes2 */
            iload 3 /* offset2 */
            iload 5 /* i */
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 7 /* byte2 */
        start local 7 // byte byte2
        11: .line 592
            iload 6 /* byte1 */
            iload 7 /* byte2 */
            if_icmpne 13
        12: .line 593
            goto 16
        13: .line 595
      StackMap locals: int int
      StackMap stack:
            iload 6 /* byte1 */
            sipush 255
            iand
            iload 7 /* byte2 */
            sipush 255
            iand
            if_icmpge 14
            iconst_m1
            goto 15
      StackMap locals:
      StackMap stack:
        14: iconst_1
      StackMap locals:
      StackMap stack: int
        15: ireturn
        end local 7 // byte byte2
        end local 6 // byte byte1
        16: .line 588
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 5 /* i */
            iload 4 /* length */
            if_icmplt 9
        end local 5 // int i
        18: .line 597
            iconst_0
            ireturn
        end local 4 // int length
        end local 3 // int offset2
        end local 2 // java.nio.ByteBuffer bytes2
        end local 1 // int offset1
        end local 0 // java.nio.ByteBuffer bytes1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0   bytes1  Ljava/nio/ByteBuffer;
            0   19     1  offset1  I
            0   19     2   bytes2  Ljava/nio/ByteBuffer;
            0   19     3  offset2  I
            0   19     4   length  I
            8   18     5        i  I
           10   16     6    byte1  B
           11   16     7    byte2  B
    MethodParameters:
         Name  Flags
      bytes1   
      offset1  
      bytes2   
      offset2  
      length   

  public static java.nio.ByteBuffer bytes(java.net.InetAddress);
    descriptor: (Ljava/net/InetAddress;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.InetAddress address
         0: .line 602
            aload 0 /* address */
            invokevirtual java.net.InetAddress.getAddress:()[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // java.net.InetAddress address
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  address  Ljava/net/InetAddress;
    MethodParameters:
         Name  Flags
      address  

  public static java.nio.ByteBuffer bytes(java.util.UUID);
    descriptor: (Ljava/util/UUID;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.UUID uuid
         0: .line 607
            aload 0 /* uuid */
            invokestatic org.apache.cassandra.utils.UUIDGen.decompose:(Ljava/util/UUID;)[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // java.util.UUID uuid
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  uuid  Ljava/util/UUID;
    MethodParameters:
      Name  Flags
      uuid  

  public static boolean isPrefix(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer prefix
        start local 1 // java.nio.ByteBuffer value
         0: .line 613
            aload 0 /* prefix */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 1 /* value */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 2
         1: .line 614
            iconst_0
            ireturn
         2: .line 616
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 0 /* prefix */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            isub
            istore 2 /* diff */
        start local 2 // int diff
         3: .line 617
            aload 0 /* prefix */
            aload 1 /* value */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            aload 1 /* value */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 2 /* diff */
            isub
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            invokevirtual java.nio.ByteBuffer.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // int diff
        end local 1 // java.nio.ByteBuffer value
        end local 0 // java.nio.ByteBuffer prefix
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0  prefix  Ljava/nio/ByteBuffer;
            0    4     1   value  Ljava/nio/ByteBuffer;
            3    4     2    diff  I
    MethodParameters:
        Name  Flags
      prefix  
      value   

  public static java.nio.ByteBuffer minimalBufferFor(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer buf
         0: .line 623
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmpgt 1
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifne 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* buf */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.getArray:(Ljava/nio/ByteBuffer;)[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* buf */
      StackMap locals:
      StackMap stack: java.nio.ByteBuffer
         3: areturn
        end local 0 // java.nio.ByteBuffer buf
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0   buf  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      buf   

  public static int getShortLength(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer bb
        start local 1 // int position
         0: .line 629
            aload 0 /* bb */
            iload 1 /* position */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            bipush 8
            ishl
            istore 2 /* length */
        start local 2 // int length
         1: .line 630
            iload 2 /* length */
            aload 0 /* bb */
            iload 1 /* position */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            ior
            ireturn
        end local 2 // int length
        end local 1 // int position
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0        bb  Ljava/nio/ByteBuffer;
            0    2     1  position  I
            1    2     2    length  I
    MethodParameters:
          Name  Flags
      bb        
      position  

  public static int readShortLength(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer bb
         0: .line 636
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 8
            ishl
            istore 1 /* length */
        start local 1 // int length
         1: .line 637
            iload 1 /* length */
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            ior
            ireturn
        end local 1 // int length
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0      bb  Ljava/nio/ByteBuffer;
            1    2     1  length  I
    MethodParameters:
      Name  Flags
      bb    

  public static void writeShortLength(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer bb
        start local 1 // int length
         0: .line 643
            aload 0 /* bb */
            iload 1 /* length */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         1: .line 644
            aload 0 /* bb */
            iload 1 /* length */
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         2: .line 645
            return
        end local 1 // int length
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0      bb  Ljava/nio/ByteBuffer;
            0    3     1  length  I
    MethodParameters:
        Name  Flags
      bb      
      length  

  public static java.nio.ByteBuffer readBytes(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer bb
        start local 1 // int length
         0: .line 650
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 2 /* copy */
        start local 2 // java.nio.ByteBuffer copy
         1: .line 651
            aload 2 /* copy */
            aload 2 /* copy */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 1 /* length */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
         2: .line 652
            aload 0 /* bb */
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 1 /* length */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         3: .line 653
            aload 2 /* copy */
            areturn
        end local 2 // java.nio.ByteBuffer copy
        end local 1 // int length
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0      bb  Ljava/nio/ByteBuffer;
            0    4     1  length  I
            1    4     2    copy  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      bb      
      length  

  public static java.nio.ByteBuffer readBytesWithShortLength(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer bb
         0: .line 659
            aload 0 /* bb */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.readShortLength:(Ljava/nio/ByteBuffer;)I
            istore 1 /* length */
        start local 1 // int length
         1: .line 660
            aload 0 /* bb */
            iload 1 /* length */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.readBytes:(Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer;
            areturn
        end local 1 // int length
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0      bb  Ljava/nio/ByteBuffer;
            1    2     1  length  I
    MethodParameters:
      Name  Flags
      bb    

  public static java.nio.ByteBuffer ensureCapacity(java.nio.ByteBuffer, int, boolean);
    descriptor: (Ljava/nio/ByteBuffer;IZ)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // java.nio.ByteBuffer buf
        start local 1 // int outputLength
        start local 2 // boolean allowBufferResize
         0: .line 674
            aload 0 /* buf */
            ifnull 1
            aload 0 /* buf */
            invokestatic org.apache.cassandra.io.compress.BufferType.typeOf:(Ljava/nio/ByteBuffer;)Lorg/apache/cassandra/io/compress/BufferType;
            goto 2
      StackMap locals:
      StackMap stack:
         1: getstatic org.apache.cassandra.io.compress.BufferType.ON_HEAP:Lorg/apache/cassandra/io/compress/BufferType;
      StackMap locals:
      StackMap stack: org.apache.cassandra.io.compress.BufferType
         2: astore 3 /* bufferType */
        start local 3 // org.apache.cassandra.io.compress.BufferType bufferType
         3: .line 675
            aload 0 /* buf */
            iload 1 /* outputLength */
            iload 2 /* allowBufferResize */
            aload 3 /* bufferType */
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.ensureCapacity:(Ljava/nio/ByteBuffer;IZLorg/apache/cassandra/io/compress/BufferType;)Ljava/nio/ByteBuffer;
            areturn
        end local 3 // org.apache.cassandra.io.compress.BufferType bufferType
        end local 2 // boolean allowBufferResize
        end local 1 // int outputLength
        end local 0 // java.nio.ByteBuffer buf
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0                buf  Ljava/nio/ByteBuffer;
            0    4     1       outputLength  I
            0    4     2  allowBufferResize  Z
            3    4     3         bufferType  Lorg/apache/cassandra/io/compress/BufferType;
    MethodParameters:
                   Name  Flags
      buf                
      outputLength       
      allowBufferResize  

  public static java.nio.ByteBuffer ensureCapacity(java.nio.ByteBuffer, int, boolean, org.apache.cassandra.io.compress.BufferType);
    descriptor: (Ljava/nio/ByteBuffer;IZLorg/apache/cassandra/io/compress/BufferType;)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // java.nio.ByteBuffer buf
        start local 1 // int outputLength
        start local 2 // boolean allowBufferResize
        start local 3 // org.apache.cassandra.io.compress.BufferType bufferType
         0: .line 690
            iload 1 /* outputLength */
            ifge 2
         1: .line 691
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "invalid size for output buffer: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* outputLength */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 692
      StackMap locals:
      StackMap stack:
            aload 0 /* buf */
            ifnull 3
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            iload 1 /* outputLength */
            if_icmpge 8
         3: .line 694
      StackMap locals:
      StackMap stack:
            iload 2 /* allowBufferResize */
            ifne 5
         4: .line 695
            new java.lang.IllegalStateException
            dup
            ldc "output buffer is not large enough for data: current capacity %d, required %d"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 1 /* outputLength */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 696
      StackMap locals:
      StackMap stack:
            aload 0 /* buf */
            invokestatic org.apache.cassandra.io.util.FileUtils.clean:(Ljava/nio/ByteBuffer;)V
         6: .line 697
            aload 3 /* bufferType */
            iload 1 /* outputLength */
            invokevirtual org.apache.cassandra.io.compress.BufferType.allocate:(I)Ljava/nio/ByteBuffer;
            astore 0 /* buf */
         7: .line 698
            goto 9
         8: .line 701
      StackMap locals:
      StackMap stack:
            aload 0 /* buf */
            iconst_0
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            iload 1 /* outputLength */
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
         9: .line 703
      StackMap locals:
      StackMap stack:
            aload 0 /* buf */
            areturn
        end local 3 // org.apache.cassandra.io.compress.BufferType bufferType
        end local 2 // boolean allowBufferResize
        end local 1 // int outputLength
        end local 0 // java.nio.ByteBuffer buf
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0                buf  Ljava/nio/ByteBuffer;
            0   10     1       outputLength  I
            0   10     2  allowBufferResize  Z
            0   10     3         bufferType  Lorg/apache/cassandra/io/compress/BufferType;
    MethodParameters:
                   Name  Flags
      buf                
      outputLength       
      allowBufferResize  
      bufferType         

  public static boolean contains(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // java.nio.ByteBuffer buffer
        start local 1 // java.nio.ByteBuffer subBuffer
         0: .line 716
            aload 1 /* subBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 717
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 2 /* len */
            isub
            ifge 3
         2: .line 718
            iconst_0
            ireturn
         3: .line 721
      StackMap locals: int
      StackMap stack:
            aload 1 /* subBuffer */
            aload 1 /* subBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 3 /* first */
        start local 3 // byte first
         4: .line 722
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 2 /* len */
            isub
            iadd
            istore 4 /* max */
        start local 4 // int max
         5: .line 724
            aload 0 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* i */
        start local 5 // int i
         6: goto 19
         7: .line 727
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* buffer */
            iload 5 /* i */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            iload 3 /* first */
            if_icmpeq 9
         8: .line 729
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
            iload 5 /* i */
            iload 4 /* max */
            if_icmpgt 9
            aload 0 /* buffer */
            iload 5 /* i */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            iload 3 /* first */
            if_icmpne 8
         9: .line 734
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 4 /* max */
            if_icmpgt 18
        10: .line 736
            iload 5 /* i */
            iconst_1
            iadd
            istore 6 /* j */
        start local 6 // int j
        11: .line 737
            iload 6 /* j */
            iload 2 /* len */
            iadd
            iconst_1
            isub
            istore 7 /* end */
        start local 7 // int end
        12: .line 738
            iconst_1
            aload 1 /* subBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            istore 8 /* k */
        start local 8 // int k
        13: goto 15
      StackMap locals: int int int
      StackMap stack:
        14: iinc 6 /* j */ 1
            iinc 8 /* k */ 1
      StackMap locals:
      StackMap stack:
        15: iload 6 /* j */
            iload 7 /* end */
            if_icmpge 16
            aload 0 /* buffer */
            iload 6 /* j */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            aload 1 /* subBuffer */
            iload 8 /* k */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            if_icmpeq 14
        end local 8 // int k
        16: .line 741
      StackMap locals:
      StackMap stack:
            iload 6 /* j */
            iload 7 /* end */
            if_icmpne 18
        17: .line 742
            iconst_1
            ireturn
        end local 7 // int end
        end local 6 // int j
        18: .line 724
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 5 /* i */
            iload 4 /* max */
            if_icmple 7
        end local 5 // int i
        20: .line 745
            iconst_0
            ireturn
        end local 4 // int max
        end local 3 // byte first
        end local 2 // int len
        end local 1 // java.nio.ByteBuffer subBuffer
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0     buffer  Ljava/nio/ByteBuffer;
            0   21     1  subBuffer  Ljava/nio/ByteBuffer;
            1   21     2        len  I
            4   21     3      first  B
            5   21     4        max  I
            6   20     5          i  I
           11   18     6          j  I
           12   18     7        end  I
           13   16     8          k  I
    MethodParameters:
           Name  Flags
      buffer     
      subBuffer  

  public static boolean startsWith(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer src
        start local 1 // java.nio.ByteBuffer prefix
         0: .line 750
            aload 0 /* src */
            aload 1 /* prefix */
            iconst_0
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.startsWith:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)Z
            ireturn
        end local 1 // java.nio.ByteBuffer prefix
        end local 0 // java.nio.ByteBuffer src
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0     src  Ljava/nio/ByteBuffer;
            0    1     1  prefix  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      src     
      prefix  

  public static boolean endsWith(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer src
        start local 1 // java.nio.ByteBuffer suffix
         0: .line 755
            aload 0 /* src */
            aload 1 /* suffix */
            aload 0 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 1 /* suffix */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            isub
            invokestatic org.apache.cassandra.utils.ByteBufferUtil.startsWith:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)Z
            ireturn
        end local 1 // java.nio.ByteBuffer suffix
        end local 0 // java.nio.ByteBuffer src
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0     src  Ljava/nio/ByteBuffer;
            0    1     1  suffix  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      src     
      suffix  

  private static boolean startsWith(java.nio.ByteBuffer, java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;I)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // java.nio.ByteBuffer src
        start local 1 // java.nio.ByteBuffer prefix
        start local 2 // int offset
         0: .line 760
            iload 2 /* offset */
            ifge 2
         1: .line 761
            iconst_0
            ireturn
         2: .line 763
      StackMap locals:
      StackMap stack:
            aload 0 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 2 /* offset */
            iadd
            istore 3 /* sPos */
        start local 3 // int sPos
         3: .line 764
            aload 1 /* prefix */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 4 /* pPos */
        start local 4 // int pPos
         4: .line 766
            aload 0 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 2 /* offset */
            isub
            aload 1 /* prefix */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmpge 6
         5: .line 767
            iconst_0
            ireturn
         6: .line 769
      StackMap locals: int int
      StackMap stack:
            aload 0 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 2 /* offset */
            isub
            aload 1 /* prefix */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* len */
        start local 5 // int len
         7: .line 771
            goto 10
         8: .line 773
      StackMap locals: int
      StackMap stack:
            aload 0 /* src */
            iload 3 /* sPos */
            iinc 3 /* sPos */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            aload 1 /* prefix */
            iload 4 /* pPos */
            iinc 4 /* pPos */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            if_icmpeq 10
         9: .line 774
            iconst_0
            ireturn
        10: .line 771
      StackMap locals:
      StackMap stack:
            iload 5 /* len */
            iinc 5 /* len */ -1
            ifgt 8
        11: .line 777
            iconst_1
            ireturn
        end local 5 // int len
        end local 4 // int pPos
        end local 3 // int sPos
        end local 2 // int offset
        end local 1 // java.nio.ByteBuffer prefix
        end local 0 // java.nio.ByteBuffer src
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0     src  Ljava/nio/ByteBuffer;
            0   12     1  prefix  Ljava/nio/ByteBuffer;
            0   12     2  offset  I
            3   12     3    sPos  I
            4   12     4    pPos  I
            7   12     5     len  I
    MethodParameters:
        Name  Flags
      src     
      prefix  
      offset  
}
SourceFile: "ByteBufferUtil.java"
NestMembers:
  org.apache.cassandra.utils.ByteBufferUtil$1
InnerClasses:
  org.apache.cassandra.utils.ByteBufferUtil$1