public final class io.netty.handler.codec.base64.Base64
minor version: 0
major version: 59
flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
this_class: io.netty.handler.codec.base64.Base64
super_class: java.lang.Object
{
private static final int MAX_LINE_LENGTH;
descriptor: I
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 76
private static final byte EQUALS_SIGN;
descriptor: B
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 61
private static final byte NEW_LINE;
descriptor: B
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 10
private static final byte WHITE_SPACE_ENC;
descriptor: B
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: -5
private static final byte EQUALS_SIGN_ENC;
descriptor: B
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: -1
private static byte[] alphabet(io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/handler/codec/base64/Base64Dialect;)[B
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "dialect"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield io.netty.handler.codec.base64.Base64Dialect.alphabet:[B
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 dialect Lio/netty/handler/codec/base64/Base64Dialect;
MethodParameters:
Name Flags
dialect
private static byte[] decodabet(io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/handler/codec/base64/Base64Dialect;)[B
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "dialect"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield io.netty.handler.codec.base64.Base64Dialect.decodabet:[B
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 dialect Lio/netty/handler/codec/base64/Base64Dialect;
MethodParameters:
Name Flags
dialect
private static boolean breakLines(io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/handler/codec/base64/Base64Dialect;)Z
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "dialect"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield io.netty.handler.codec.base64.Base64Dialect.breakLinesByDefault:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 dialect Lio/netty/handler/codec/base64/Base64Dialect;
MethodParameters:
Name Flags
dialect
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf);
descriptor: (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getstatic io.netty.handler.codec.base64.Base64Dialect.STANDARD:Lio/netty/handler/codec/base64/Base64Dialect;
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
MethodParameters:
Name Flags
src
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic io.netty.handler.codec.base64.Base64.breakLines:(Lio/netty/handler/codec/base64/Base64Dialect;)Z
aload 1
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;ZLio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 dialect Lio/netty/handler/codec/base64/Base64Dialect;
MethodParameters:
Name Flags
src
dialect
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, boolean);
descriptor: (Lio/netty/buffer/ByteBuf;Z)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
getstatic io.netty.handler.codec.base64.Base64Dialect.STANDARD:Lio/netty/handler/codec/base64/Base64Dialect;
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;ZLio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 breakLines Z
MethodParameters:
Name Flags
src
breakLines
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, boolean, io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/buffer/ByteBuf;ZLio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=5, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "src"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
aload 0
invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
aload 0
invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
iload 1
aload 2
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;IIZLio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
astore 3
start local 3 3: aload 0
aload 0
invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
invokevirtual io.netty.buffer.ByteBuf.readerIndex:(I)Lio/netty/buffer/ByteBuf;
pop
4: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 src Lio/netty/buffer/ByteBuf;
0 5 1 breakLines Z
0 5 2 dialect Lio/netty/handler/codec/base64/Base64Dialect;
3 5 3 dest Lio/netty/buffer/ByteBuf;
MethodParameters:
Name Flags
src
breakLines
dialect
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, int, int);
descriptor: (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
iload 2
getstatic io.netty.handler.codec.base64.Base64Dialect.STANDARD:Lio/netty/handler/codec/base64/Base64Dialect;
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;IILio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 off I
0 1 2 len I
MethodParameters:
Name Flags
src
off
len
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, int, int, io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/buffer/ByteBuf;IILio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
iload 1
iload 2
aload 3
invokestatic io.netty.handler.codec.base64.Base64.breakLines:(Lio/netty/handler/codec/base64/Base64Dialect;)Z
aload 3
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;IIZLio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 off I
0 1 2 len I
0 1 3 dialect Lio/netty/handler/codec/base64/Base64Dialect;
MethodParameters:
Name Flags
src
off
len
dialect
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, int, int, boolean);
descriptor: (Lio/netty/buffer/ByteBuf;IIZ)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
iload 1
iload 2
iload 3
getstatic io.netty.handler.codec.base64.Base64Dialect.STANDARD:Lio/netty/handler/codec/base64/Base64Dialect;
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;IIZLio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 off I
0 1 2 len I
0 1 3 breakLines Z
MethodParameters:
Name Flags
src
off
len
breakLines
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, int, int, boolean, io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/buffer/ByteBuf;IIZLio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
iload 1
iload 2
iload 3
aload 4
aload 0
invokevirtual io.netty.buffer.ByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
invokestatic io.netty.handler.codec.base64.Base64.encode:(Lio/netty/buffer/ByteBuf;IIZLio/netty/handler/codec/base64/Base64Dialect;Lio/netty/buffer/ByteBufAllocator;)Lio/netty/buffer/ByteBuf;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 off I
0 1 2 len I
0 1 3 breakLines Z
0 1 4 dialect Lio/netty/handler/codec/base64/Base64Dialect;
MethodParameters:
Name Flags
src
off
len
breakLines
dialect
public static io.netty.buffer.ByteBuf encode(io.netty.buffer.ByteBuf, int, int, boolean, io.netty.handler.codec.base64.Base64Dialect, io.netty.buffer.ByteBufAllocator);
descriptor: (Lio/netty/buffer/ByteBuf;IIZLio/netty/handler/codec/base64/Base64Dialect;Lio/netty/buffer/ByteBufAllocator;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=12, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 0
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "src"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 4
ifnonnull 4
3: new java.lang.NullPointerException
dup
ldc "dialect"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
aload 5
iload 2
iload 3
invokestatic io.netty.handler.codec.base64.Base64.encodedBufferSize:(IZ)I
invokeinterface io.netty.buffer.ByteBufAllocator.buffer:(I)Lio/netty/buffer/ByteBuf;
aload 0
invokevirtual io.netty.buffer.ByteBuf.order:()Ljava/nio/ByteOrder;
invokevirtual io.netty.buffer.ByteBuf.order:(Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf;
astore 6
start local 6 5: aload 4
invokestatic io.netty.handler.codec.base64.Base64.alphabet:(Lio/netty/handler/codec/base64/Base64Dialect;)[B
astore 7
start local 7 6: iconst_0
istore 8
start local 8 7: iconst_0
istore 9
start local 9 8: iload 2
iconst_2
isub
istore 10
start local 10 9: iconst_0
istore 11
start local 11 10: goto 18
11: StackMap locals: io.netty.buffer.ByteBuf int int int io.netty.handler.codec.base64.Base64Dialect io.netty.buffer.ByteBufAllocator io.netty.buffer.ByteBuf byte[] int int int int
StackMap stack:
aload 0
iload 8
iload 1
iadd
iconst_3
aload 6
iload 9
aload 7
invokestatic io.netty.handler.codec.base64.Base64.encode3to4:(Lio/netty/buffer/ByteBuf;IILio/netty/buffer/ByteBuf;I[B)V
12: iinc 11 4
13: iload 3
ifeq 17
iload 11
bipush 76
if_icmpne 17
14: aload 6
iload 9
iconst_4
iadd
bipush 10
invokevirtual io.netty.buffer.ByteBuf.setByte:(II)Lio/netty/buffer/ByteBuf;
pop
15: iinc 9 1
16: iconst_0
istore 11
17: StackMap locals:
StackMap stack:
iinc 8 3
iinc 9 4
StackMap locals:
StackMap stack:
18: iload 8
iload 10
if_icmplt 11
19: iload 8
iload 2
if_icmpge 22
20: aload 0
iload 8
iload 1
iadd
iload 2
iload 8
isub
aload 6
iload 9
aload 7
invokestatic io.netty.handler.codec.base64.Base64.encode3to4:(Lio/netty/buffer/ByteBuf;IILio/netty/buffer/ByteBuf;I[B)V
21: iinc 9 4
22: StackMap locals:
StackMap stack:
iload 9
iconst_1
if_icmple 24
aload 6
iload 9
iconst_1
isub
invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
bipush 10
if_icmpne 24
23: iinc 9 -1
24: StackMap locals:
StackMap stack:
aload 6
iconst_0
iload 9
invokevirtual io.netty.buffer.ByteBuf.slice:(II)Lio/netty/buffer/ByteBuf;
areturn
end local 11 end local 10 end local 9 end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 25 0 src Lio/netty/buffer/ByteBuf;
0 25 1 off I
0 25 2 len I
0 25 3 breakLines Z
0 25 4 dialect Lio/netty/handler/codec/base64/Base64Dialect;
0 25 5 allocator Lio/netty/buffer/ByteBufAllocator;
5 25 6 dest Lio/netty/buffer/ByteBuf;
6 25 7 alphabet [B
7 25 8 d I
8 25 9 e I
9 25 10 len2 I
10 25 11 lineLength I
MethodParameters:
Name Flags
src
off
len
breakLines
dialect
allocator
private static void encode3to4(io.netty.buffer.ByteBuf, int, int, io.netty.buffer.ByteBuf, int, byte[]);
descriptor: (Lio/netty/buffer/ByteBuf;IILio/netty/buffer/ByteBuf;I[B)V
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=5, locals=7, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 0
invokevirtual io.netty.buffer.ByteBuf.order:()Ljava/nio/ByteOrder;
getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
if_acmpne 11
1: iload 2
tableswitch { // 1 - 2
1: 2
2: 4
default: 6
}
2: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
invokestatic io.netty.handler.codec.base64.Base64.toInt:(B)I
istore 6
start local 6 3: goto 9
end local 6 4: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
invokestatic io.netty.handler.codec.base64.Base64.toIntBE:(S)I
istore 6
start local 6 5: goto 9
end local 6 6: StackMap locals:
StackMap stack:
iload 2
ifgt 7
iconst_0
goto 8
StackMap locals:
StackMap stack:
7: aload 0
iload 1
invokevirtual io.netty.buffer.ByteBuf.getMedium:(I)I
invokestatic io.netty.handler.codec.base64.Base64.toIntBE:(I)I
StackMap locals:
StackMap stack: int
8: istore 6
start local 6 9: StackMap locals: int
StackMap stack:
iload 6
iload 2
aload 3
iload 4
aload 5
invokestatic io.netty.handler.codec.base64.Base64.encode3to4BigEndian:(IILio/netty/buffer/ByteBuf;I[B)V
end local 6 10: goto 20
11: StackMap locals:
StackMap stack:
iload 2
tableswitch { // 1 - 2
1: 12
2: 14
default: 16
}
12: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
invokestatic io.netty.handler.codec.base64.Base64.toInt:(B)I
istore 6
start local 6 13: goto 19
end local 6 14: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
invokestatic io.netty.handler.codec.base64.Base64.toIntLE:(S)I
istore 6
start local 6 15: goto 19
end local 6 16: StackMap locals:
StackMap stack:
iload 2
ifgt 17
iconst_0
goto 18
StackMap locals:
StackMap stack:
17: aload 0
iload 1
invokevirtual io.netty.buffer.ByteBuf.getMedium:(I)I
invokestatic io.netty.handler.codec.base64.Base64.toIntLE:(I)I
StackMap locals:
StackMap stack: int
18: istore 6
start local 6 19: StackMap locals: int
StackMap stack:
iload 6
iload 2
aload 3
iload 4
aload 5
invokestatic io.netty.handler.codec.base64.Base64.encode3to4LittleEndian:(IILio/netty/buffer/ByteBuf;I[B)V
end local 6 20: StackMap locals:
StackMap stack:
return
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 21 0 src Lio/netty/buffer/ByteBuf;
0 21 1 srcOffset I
0 21 2 numSigBytes I
0 21 3 dest Lio/netty/buffer/ByteBuf;
0 21 4 destOffset I
0 21 5 alphabet [B
3 4 6 inBuff I
5 6 6 inBuff I
9 10 6 inBuff I
13 14 6 inBuff I
15 16 6 inBuff I
19 20 6 inBuff I
MethodParameters:
Name Flags
src
srcOffset
numSigBytes
dest
destOffset
alphabet
static int encodedBufferSize(int, boolean);
descriptor: (IZ)I
flags: (0x0008) ACC_STATIC
Code:
stack=6, locals=6, args_size=2
start local 0 start local 1 0: iload 0
i2l
iconst_2
lshl
ldc 3
ldiv
lstore 2
start local 2 1: lload 2
ldc 3
ladd
ldc -4
land
lstore 4
start local 4 2: iload 1
ifeq 4
3: lload 4
lload 2
ldc 76
ldiv
ladd
lstore 4
4: StackMap locals: long long
StackMap stack:
lload 4
ldc 2147483647
lcmp
ifge 5
lload 4
l2i
goto 6
StackMap locals:
StackMap stack:
5: ldc 2147483647
StackMap locals:
StackMap stack: int
6: ireturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 len I
0 7 1 breakLines Z
1 7 2 len43 J
2 7 4 ret J
MethodParameters:
Name Flags
len
breakLines
private static int toInt(byte);
descriptor: (B)I
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: iload 0
sipush 255
iand
bipush 16
ishl
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 value B
MethodParameters:
Name Flags
value
private static int toIntBE(short);
descriptor: (S)I
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: iload 0
ldc 65280
iand
bipush 8
ishl
iload 0
sipush 255
iand
bipush 8
ishl
ior
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 value S
MethodParameters:
Name Flags
value
private static int toIntLE(short);
descriptor: (S)I
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: iload 0
sipush 255
iand
bipush 16
ishl
iload 0
ldc 65280
iand
ior
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 value S
MethodParameters:
Name Flags
value
private static int toIntBE(int);
descriptor: (I)I
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: iload 0
ldc 16711680
iand
iload 0
ldc 65280
iand
ior
iload 0
sipush 255
iand
ior
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 mediumValue I
MethodParameters:
Name Flags
mediumValue
private static int toIntLE(int);
descriptor: (I)I
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: iload 0
sipush 255
iand
bipush 16
ishl
iload 0
ldc 65280
iand
ior
iload 0
ldc 16711680
iand
bipush 16
iushr
ior
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 mediumValue I
MethodParameters:
Name Flags
mediumValue
private static void encode3to4BigEndian(int, int, io.netty.buffer.ByteBuf, int, byte[]);
descriptor: (IILio/netty/buffer/ByteBuf;I[B)V
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=6, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: iload 1
tableswitch { // 1 - 3
1: 13
2: 7
3: 1
default: 19
}
1: StackMap locals:
StackMap stack:
aload 2
iload 3
aload 4
iload 0
bipush 18
iushr
baload
bipush 24
ishl
2: aload 4
iload 0
bipush 12
iushr
bipush 63
iand
baload
bipush 16
ishl
ior
3: aload 4
iload 0
bipush 6
iushr
bipush 63
iand
baload
bipush 8
ishl
ior
4: aload 4
iload 0
bipush 63
iand
baload
ior
5: invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
pop
6: goto 19
7: StackMap locals:
StackMap stack:
aload 2
iload 3
aload 4
iload 0
bipush 18
iushr
baload
bipush 24
ishl
8: aload 4
iload 0
bipush 12
iushr
bipush 63
iand
baload
bipush 16
ishl
ior
9: aload 4
iload 0
bipush 6
iushr
bipush 63
iand
baload
bipush 8
ishl
ior
10: bipush 61
ior
11: invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
pop
12: goto 19
13: StackMap locals:
StackMap stack:
aload 2
iload 3
aload 4
iload 0
bipush 18
iushr
baload
bipush 24
ishl
14: aload 4
iload 0
bipush 12
iushr
bipush 63
iand
baload
bipush 16
ishl
ior
15: sipush 15616
ior
16: bipush 61
ior
17: invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
pop
18: goto 19
19: StackMap locals:
StackMap stack:
return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 inBuff I
0 20 1 numSigBytes I
0 20 2 dest Lio/netty/buffer/ByteBuf;
0 20 3 destOffset I
0 20 4 alphabet [B
MethodParameters:
Name Flags
inBuff
numSigBytes
dest
destOffset
alphabet
private static void encode3to4LittleEndian(int, int, io.netty.buffer.ByteBuf, int, byte[]);
descriptor: (IILio/netty/buffer/ByteBuf;I[B)V
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=6, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: iload 1
tableswitch { // 1 - 3
1: 13
2: 7
3: 1
default: 19
}
1: StackMap locals:
StackMap stack:
aload 2
iload 3
aload 4
iload 0
bipush 18
iushr
baload
2: aload 4
iload 0
bipush 12
iushr
bipush 63
iand
baload
bipush 8
ishl
ior
3: aload 4
iload 0
bipush 6
iushr
bipush 63
iand
baload
bipush 16
ishl
ior
4: aload 4
iload 0
bipush 63
iand
baload
bipush 24
ishl
ior
5: invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
pop
6: goto 19
7: StackMap locals:
StackMap stack:
aload 2
iload 3
aload 4
iload 0
bipush 18
iushr
baload
8: aload 4
iload 0
bipush 12
iushr
bipush 63
iand
baload
bipush 8
ishl
ior
9: aload 4
iload 0
bipush 6
iushr
bipush 63
iand
baload
bipush 16
ishl
ior
10: ldc 1023410176
ior
11: invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
pop
12: goto 19
13: StackMap locals:
StackMap stack:
aload 2
iload 3
aload 4
iload 0
bipush 18
iushr
baload
14: aload 4
iload 0
bipush 12
iushr
bipush 63
iand
baload
bipush 8
ishl
ior
15: ldc 3997696
ior
16: ldc 1023410176
ior
17: invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
pop
18: goto 19
19: StackMap locals:
StackMap stack:
return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 inBuff I
0 20 1 numSigBytes I
0 20 2 dest Lio/netty/buffer/ByteBuf;
0 20 3 destOffset I
0 20 4 alphabet [B
MethodParameters:
Name Flags
inBuff
numSigBytes
dest
destOffset
alphabet
public static io.netty.buffer.ByteBuf decode(io.netty.buffer.ByteBuf);
descriptor: (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getstatic io.netty.handler.codec.base64.Base64Dialect.STANDARD:Lio/netty/handler/codec/base64/Base64Dialect;
invokestatic io.netty.handler.codec.base64.Base64.decode:(Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
MethodParameters:
Name Flags
src
public static io.netty.buffer.ByteBuf decode(io.netty.buffer.ByteBuf, io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/buffer/ByteBuf;Lio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "src"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
aload 0
invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
aload 0
invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
aload 1
invokestatic io.netty.handler.codec.base64.Base64.decode:(Lio/netty/buffer/ByteBuf;IILio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
astore 2
start local 2 3: aload 0
aload 0
invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
invokevirtual io.netty.buffer.ByteBuf.readerIndex:(I)Lio/netty/buffer/ByteBuf;
pop
4: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 src Lio/netty/buffer/ByteBuf;
0 5 1 dialect Lio/netty/handler/codec/base64/Base64Dialect;
3 5 2 dest Lio/netty/buffer/ByteBuf;
MethodParameters:
Name Flags
src
dialect
public static io.netty.buffer.ByteBuf decode(io.netty.buffer.ByteBuf, int, int);
descriptor: (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
iload 2
getstatic io.netty.handler.codec.base64.Base64Dialect.STANDARD:Lio/netty/handler/codec/base64/Base64Dialect;
invokestatic io.netty.handler.codec.base64.Base64.decode:(Lio/netty/buffer/ByteBuf;IILio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 off I
0 1 2 len I
MethodParameters:
Name Flags
src
off
len
public static io.netty.buffer.ByteBuf decode(io.netty.buffer.ByteBuf, int, int, io.netty.handler.codec.base64.Base64Dialect);
descriptor: (Lio/netty/buffer/ByteBuf;IILio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
iload 1
iload 2
aload 3
aload 0
invokevirtual io.netty.buffer.ByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
invokestatic io.netty.handler.codec.base64.Base64.decode:(Lio/netty/buffer/ByteBuf;IILio/netty/handler/codec/base64/Base64Dialect;Lio/netty/buffer/ByteBufAllocator;)Lio/netty/buffer/ByteBuf;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 src Lio/netty/buffer/ByteBuf;
0 1 1 off I
0 1 2 len I
0 1 3 dialect Lio/netty/handler/codec/base64/Base64Dialect;
MethodParameters:
Name Flags
src
off
len
dialect
public static io.netty.buffer.ByteBuf decode(io.netty.buffer.ByteBuf, int, int, io.netty.handler.codec.base64.Base64Dialect, io.netty.buffer.ByteBufAllocator);
descriptor: (Lio/netty/buffer/ByteBuf;IILio/netty/handler/codec/base64/Base64Dialect;Lio/netty/buffer/ByteBufAllocator;)Lio/netty/buffer/ByteBuf;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
ifnonnull 2
1: new java.lang.NullPointerException
dup
ldc "src"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 3
ifnonnull 4
3: new java.lang.NullPointerException
dup
ldc "dialect"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
new io.netty.handler.codec.base64.Base64$Decoder
dup
invokespecial io.netty.handler.codec.base64.Base64$Decoder.<init>:()V
aload 0
iload 1
iload 2
aload 4
aload 3
invokevirtual io.netty.handler.codec.base64.Base64$Decoder.decode:(Lio/netty/buffer/ByteBuf;IILio/netty/buffer/ByteBufAllocator;Lio/netty/handler/codec/base64/Base64Dialect;)Lio/netty/buffer/ByteBuf;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 src Lio/netty/buffer/ByteBuf;
0 5 1 off I
0 5 2 len I
0 5 3 dialect Lio/netty/handler/codec/base64/Base64Dialect;
0 5 4 allocator Lio/netty/buffer/ByteBufAllocator;
MethodParameters:
Name Flags
src
off
len
dialect
allocator
static int decodedBufferSize(int);
descriptor: (I)I
flags: (0x0008) ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: iload 0
iload 0
iconst_2
iushr
isub
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 len I
MethodParameters:
Name Flags
len
private void <init>();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/netty/handler/codec/base64/Base64;
}
SourceFile: "Base64.java"
NestMembers:
io.netty.handler.codec.base64.Base64$Decoder
InnerClasses:
private final Decoder = io.netty.handler.codec.base64.Base64$Decoder of io.netty.handler.codec.base64.Base64