Lines Matching refs:start
35 private final int start; field in ByteArray
49 public ByteArray(byte[] bytes, int start, int end) { in ByteArray() argument
54 if (start < 0) { in ByteArray()
58 if (end < start) { in ByteArray()
67 this.start = start; in ByteArray()
68 this.size = end - start; in ByteArray()
97 public ByteArray slice(int start, int end) { in slice() argument
98 checkOffsets(start, end); in slice()
99 byte[] slicedOut = Arrays.copyOfRange(bytes, start, end); in slice()
113 return start + offset; in underlyingOffset()
209 System.arraycopy(bytes, start, out, offset, size); in getBytes()
233 return bytes[start + off]; in getByte0()
244 return bytes[start + off] & 0xff; in getUnsignedByte0()
323 System.arraycopy(bytes, cursor + start, arr, offset, length); in read()