|
|
|
@ -446,7 +446,7 @@ public fun ByteBuf.getBytesA( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
getBytes(index, dst, dstIndex, len) |
|
|
|
|
for (i in 0 until len) { |
|
|
|
@ -467,7 +467,7 @@ public fun ByteBuf.getBytesA(index: Int, dst: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.getBytesA( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val dstIndex = dst.writerIndex() |
|
|
|
|
dst.ensureWritable(len) |
|
|
|
@ -480,7 +480,7 @@ public fun ByteBuf.getBytesA( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
dst.setByte(dstIndex + i, getByteA(index + i).toInt()) |
|
|
|
@ -496,7 +496,7 @@ public fun ByteBuf.readBytesA(dst: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesA( |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesA(index, dst, dstIndex, len) |
|
|
|
@ -524,7 +524,7 @@ public fun ByteBuf.readBytesA(dst: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesA( |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesA(index, dst, dstIndex, len) |
|
|
|
@ -551,7 +551,7 @@ public fun ByteBuf.setBytesA( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
Unpooled.wrappedBuffer(src).use { buf -> |
|
|
|
|
setBytesA(index, buf, srcIndex, len) |
|
|
|
@ -570,7 +570,7 @@ public fun ByteBuf.setBytesA(index: Int, src: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.setBytesA( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val srcIndex = src.readerIndex() |
|
|
|
|
setBytesA(index, src, srcIndex, len) |
|
|
|
@ -582,7 +582,7 @@ public fun ByteBuf.setBytesA( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
setByteA(index + i, src.getByte(srcIndex + i).toInt()) |
|
|
|
@ -598,7 +598,7 @@ public fun ByteBuf.writeBytesA(src: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesA( |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -625,7 +625,7 @@ public fun ByteBuf.writeBytesA(src: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesA( |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -643,7 +643,7 @@ public fun ByteBuf.getBytesC( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
getBytes(index, dst, dstIndex, len) |
|
|
|
|
for (i in 0 until len) { |
|
|
|
@ -664,7 +664,7 @@ public fun ByteBuf.getBytesC(index: Int, dst: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.getBytesC( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val dstIndex = dst.writerIndex() |
|
|
|
|
dst.ensureWritable(len) |
|
|
|
@ -677,7 +677,7 @@ public fun ByteBuf.getBytesC( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
dst.setByte(dstIndex + i, getByteC(index + i).toInt()) |
|
|
|
@ -693,7 +693,7 @@ public fun ByteBuf.readBytesC(dst: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesC( |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesC(index, dst, dstIndex, len) |
|
|
|
@ -721,7 +721,7 @@ public fun ByteBuf.readBytesC(dst: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesC( |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesC(index, dst, dstIndex, len) |
|
|
|
@ -748,7 +748,7 @@ public fun ByteBuf.setBytesC( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
Unpooled.wrappedBuffer(src).use { buf -> |
|
|
|
|
setBytesC(index, buf, srcIndex, len) |
|
|
|
@ -767,7 +767,7 @@ public fun ByteBuf.setBytesC(index: Int, src: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.setBytesC( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val srcIndex = src.readerIndex() |
|
|
|
|
setBytesC(index, src, srcIndex, len) |
|
|
|
@ -779,7 +779,7 @@ public fun ByteBuf.setBytesC( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
setByteC(index + i, src.getByte(srcIndex + i).toInt()) |
|
|
|
@ -795,7 +795,7 @@ public fun ByteBuf.writeBytesC(src: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesC( |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -822,7 +822,7 @@ public fun ByteBuf.writeBytesC(src: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesC( |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -840,7 +840,7 @@ public fun ByteBuf.getBytesS( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
getBytes(index, dst, dstIndex, len) |
|
|
|
|
for (i in 0 until len) { |
|
|
|
@ -861,7 +861,7 @@ public fun ByteBuf.getBytesS(index: Int, dst: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.getBytesS( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val dstIndex = dst.writerIndex() |
|
|
|
|
dst.ensureWritable(len) |
|
|
|
@ -874,7 +874,7 @@ public fun ByteBuf.getBytesS( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
dst.setByte(dstIndex + i, getByteS(index + i).toInt()) |
|
|
|
@ -890,7 +890,7 @@ public fun ByteBuf.readBytesS(dst: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesS( |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesS(index, dst, dstIndex, len) |
|
|
|
@ -918,7 +918,7 @@ public fun ByteBuf.readBytesS(dst: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesS( |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesS(index, dst, dstIndex, len) |
|
|
|
@ -945,7 +945,7 @@ public fun ByteBuf.setBytesS( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
Unpooled.wrappedBuffer(src).use { buf -> |
|
|
|
|
setBytesS(index, buf, srcIndex, len) |
|
|
|
@ -964,7 +964,7 @@ public fun ByteBuf.setBytesS(index: Int, src: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.setBytesS( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val srcIndex = src.readerIndex() |
|
|
|
|
setBytesS(index, src, srcIndex, len) |
|
|
|
@ -976,7 +976,7 @@ public fun ByteBuf.setBytesS( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
setByteS(index + i, src.getByte(srcIndex + i).toInt()) |
|
|
|
@ -992,7 +992,7 @@ public fun ByteBuf.writeBytesS(src: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesS( |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1019,7 +1019,7 @@ public fun ByteBuf.writeBytesS(src: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesS( |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1037,7 +1037,7 @@ public fun ByteBuf.getBytesReverse( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
getBytes(index, dst, dstIndex, len) |
|
|
|
|
for (i in 0 until len) { |
|
|
|
@ -1059,7 +1059,7 @@ public fun ByteBuf.getBytesReverse(index: Int, dst: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.getBytesReverse( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val dstIndex = dst.writerIndex() |
|
|
|
|
dst.ensureWritable(len) |
|
|
|
@ -1072,7 +1072,7 @@ public fun ByteBuf.getBytesReverse( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
dst.setByte(dstIndex + i, getByte(index + len - i - 1).toInt()) |
|
|
|
@ -1088,7 +1088,7 @@ public fun ByteBuf.readBytesReverse(dst: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverse( |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverse(index, dst, dstIndex, len) |
|
|
|
@ -1116,7 +1116,7 @@ public fun ByteBuf.readBytesReverse(dst: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverse( |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverse(index, dst, dstIndex, len) |
|
|
|
@ -1143,7 +1143,7 @@ public fun ByteBuf.setBytesReverse( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
Unpooled.wrappedBuffer(src).use { buf -> |
|
|
|
|
setBytesReverse(index, buf, srcIndex, len) |
|
|
|
@ -1162,7 +1162,7 @@ public fun ByteBuf.setBytesReverse(index: Int, src: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.setBytesReverse( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val srcIndex = src.readerIndex() |
|
|
|
|
setBytesReverse(index, src, srcIndex, len) |
|
|
|
@ -1174,7 +1174,7 @@ public fun ByteBuf.setBytesReverse( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
setByte(index + i, src.getByte(srcIndex + len - i - 1).toInt()) |
|
|
|
@ -1190,7 +1190,7 @@ public fun ByteBuf.writeBytesReverse(src: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverse( |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1217,7 +1217,7 @@ public fun ByteBuf.writeBytesReverse(src: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverse( |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1235,7 +1235,7 @@ public fun ByteBuf.getBytesReverseA( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
getBytes(index, dst, dstIndex, len) |
|
|
|
|
for (i in 0 until len) { |
|
|
|
@ -1257,7 +1257,7 @@ public fun ByteBuf.getBytesReverseA(index: Int, dst: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.getBytesReverseA( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val dstIndex = dst.writerIndex() |
|
|
|
|
dst.ensureWritable(len) |
|
|
|
@ -1270,7 +1270,7 @@ public fun ByteBuf.getBytesReverseA( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
dst.setByte(dstIndex + i, getByteA(index + len - i - 1).toInt()) |
|
|
|
@ -1286,7 +1286,7 @@ public fun ByteBuf.readBytesReverseA(dst: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverseA( |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverseA(index, dst, dstIndex, len) |
|
|
|
@ -1314,7 +1314,7 @@ public fun ByteBuf.readBytesReverseA(dst: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverseA( |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverseA(index, dst, dstIndex, len) |
|
|
|
@ -1341,7 +1341,7 @@ public fun ByteBuf.setBytesReverseA( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
Unpooled.wrappedBuffer(src).use { buf -> |
|
|
|
|
setBytesReverseA(index, buf, srcIndex, len) |
|
|
|
@ -1360,7 +1360,7 @@ public fun ByteBuf.setBytesReverseA(index: Int, src: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.setBytesReverseA( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val srcIndex = src.readerIndex() |
|
|
|
|
setBytesReverseA(index, src, srcIndex, len) |
|
|
|
@ -1372,7 +1372,7 @@ public fun ByteBuf.setBytesReverseA( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
setByteA(index + i, src.getByte(srcIndex + len - i - 1).toInt()) |
|
|
|
@ -1388,7 +1388,7 @@ public fun ByteBuf.writeBytesReverseA(src: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverseA( |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1415,7 +1415,7 @@ public fun ByteBuf.writeBytesReverseA(src: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverseA( |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1433,7 +1433,7 @@ public fun ByteBuf.getBytesReverseC( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
getBytes(index, dst, dstIndex, len) |
|
|
|
|
for (i in 0 until len) { |
|
|
|
@ -1455,7 +1455,7 @@ public fun ByteBuf.getBytesReverseC(index: Int, dst: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.getBytesReverseC( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val dstIndex = dst.writerIndex() |
|
|
|
|
dst.ensureWritable(len) |
|
|
|
@ -1468,7 +1468,7 @@ public fun ByteBuf.getBytesReverseC( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
dst.setByte(dstIndex + i, getByteC(index + len - i - 1).toInt()) |
|
|
|
@ -1484,7 +1484,7 @@ public fun ByteBuf.readBytesReverseC(dst: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverseC( |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverseC(index, dst, dstIndex, len) |
|
|
|
@ -1512,7 +1512,7 @@ public fun ByteBuf.readBytesReverseC(dst: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverseC( |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverseC(index, dst, dstIndex, len) |
|
|
|
@ -1539,7 +1539,7 @@ public fun ByteBuf.setBytesReverseC( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
Unpooled.wrappedBuffer(src).use { buf -> |
|
|
|
|
setBytesReverseC(index, buf, srcIndex, len) |
|
|
|
@ -1558,7 +1558,7 @@ public fun ByteBuf.setBytesReverseC(index: Int, src: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.setBytesReverseC( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val srcIndex = src.readerIndex() |
|
|
|
|
setBytesReverseC(index, src, srcIndex, len) |
|
|
|
@ -1570,7 +1570,7 @@ public fun ByteBuf.setBytesReverseC( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
setByteC(index + i, src.getByte(srcIndex + len - i - 1).toInt()) |
|
|
|
@ -1586,7 +1586,7 @@ public fun ByteBuf.writeBytesReverseC(src: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverseC( |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1613,7 +1613,7 @@ public fun ByteBuf.writeBytesReverseC(src: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverseC( |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1631,7 +1631,7 @@ public fun ByteBuf.getBytesReverseS( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
getBytes(index, dst, dstIndex, len) |
|
|
|
|
for (i in 0 until len) { |
|
|
|
@ -1653,7 +1653,7 @@ public fun ByteBuf.getBytesReverseS(index: Int, dst: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.getBytesReverseS( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val dstIndex = dst.writerIndex() |
|
|
|
|
dst.ensureWritable(len) |
|
|
|
@ -1666,7 +1666,7 @@ public fun ByteBuf.getBytesReverseS( |
|
|
|
|
index: Int, |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
dst.setByte(dstIndex + i, getByteS(index + len - i - 1).toInt()) |
|
|
|
@ -1682,7 +1682,7 @@ public fun ByteBuf.readBytesReverseS(dst: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverseS( |
|
|
|
|
dst: ByteArray, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverseS(index, dst, dstIndex, len) |
|
|
|
@ -1710,7 +1710,7 @@ public fun ByteBuf.readBytesReverseS(dst: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.readBytesReverseS( |
|
|
|
|
dst: ByteBuf, |
|
|
|
|
dstIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = readerIndex() |
|
|
|
|
getBytesReverseS(index, dst, dstIndex, len) |
|
|
|
@ -1737,7 +1737,7 @@ public fun ByteBuf.setBytesReverseS( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
Unpooled.wrappedBuffer(src).use { buf -> |
|
|
|
|
setBytesReverseS(index, buf, srcIndex, len) |
|
|
|
@ -1756,7 +1756,7 @@ public fun ByteBuf.setBytesReverseS(index: Int, src: ByteBuf): ByteBuf { |
|
|
|
|
public fun ByteBuf.setBytesReverseS( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val srcIndex = src.readerIndex() |
|
|
|
|
setBytesReverseS(index, src, srcIndex, len) |
|
|
|
@ -1768,7 +1768,7 @@ public fun ByteBuf.setBytesReverseS( |
|
|
|
|
index: Int, |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
for (i in 0 until len) { |
|
|
|
|
setByteS(index + i, src.getByte(srcIndex + len - i - 1).toInt()) |
|
|
|
@ -1784,7 +1784,7 @@ public fun ByteBuf.writeBytesReverseS(src: ByteArray): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverseS( |
|
|
|
|
src: ByteArray, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
@ -1811,7 +1811,7 @@ public fun ByteBuf.writeBytesReverseS(src: ByteBuf, len: Int): ByteBuf { |
|
|
|
|
public fun ByteBuf.writeBytesReverseS( |
|
|
|
|
src: ByteBuf, |
|
|
|
|
srcIndex: Int, |
|
|
|
|
len: Int |
|
|
|
|
len: Int, |
|
|
|
|
): ByteBuf { |
|
|
|
|
val index = writerIndex() |
|
|
|
|
ensureWritable(len) |
|
|
|
|