Home | History | Annotate | Download | only in util

Lines Matching defs:bytes

63      * {@code >= 8 (if used);} the number of bytes of hex output to use
121 * may be larger than the number of bytes written
134 * bytes at the end).
259 public void write(ByteArray bytes) {
260 int blen = bytes.size();
271 bytes.getBytes(data, writeAt);
276 public void write(byte[] bytes, int offset, int length) {
282 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) {
283 throw new IndexOutOfBoundsException("bytes.length " +
284 bytes.length + "; " +
295 System.arraycopy(bytes, offset, data, writeAt, length);
300 public void write(byte[] bytes) {
301 write(bytes, 0, bytes.length);