Home | History | Annotate | Download | only in stream

Lines Matching refs:offset

30  * The IIOByteBuffer class represents a byte array with offset and length that
43 * The offset.
45 private int offset;
57 * @param offset
58 * the offset in the array.
62 public IIOByteBuffer(byte[] data, int offset, int length) {
64 this.offset = offset;
87 * Gets the offset of this IIOByteBuffer.
89 * @return the offset of this IIOByteBuffer.
92 return offset;
116 * Sets the offset in the data array of this IIOByteBuffer.
118 * @param offset
119 * the new offset.
121 public void setOffset(int offset) {
122 this.offset = offset;