Lines Matching refs:bytes
71 * The number of bytes required to represent a primitive {@code primtyp}
74 public static final int BYTES = WrapperCl.SIZE / Byte.SIZE;
309 * stored in the first ? bytes of {@code bytes}; equivalent to {@code
310 * ByteBuffer.wrap(bytes).getPrimTyp()}. For example, the input byte array
316 * @throws IllegalArgumentException if {@code bytes} has fewer than ?
320 public static primtyp fromByteArray(byte[] bytes) {
321 checkArgument(bytes.length >= BYTES,
322 "array too small: %s < %s", bytes.length, BYTES);