Lines Matching defs:off

130      * them into <code>b</code> starting at index <code>off</code>.
139 * @param off the starting position within <code>b</code> to write to.
147 * @exception IndexOutOfBoundsException if <code>off</code> is
148 * negative, <code>len</code> is negative, or <code>off +
152 int read(byte[] b, int off, int len) throws IOException;
211 * an int, masks it with <code>0xff</code> in order to strip off
255 * <code>0xffff</code> in order to strip off any sign-extension
311 * strip off any sign-extension bits, and returns the result as an
501 * into <code>b</code> starting at index <code>off</code>.
509 * @param off the starting position within <code>b</code> to write to.
512 * @exception IndexOutOfBoundsException if <code>off</code> is
513 * negative, <code>len</code> is negative, or <code>off +
521 void readFully(byte[] b, int off, int len) throws IOException;
546 * <code>off</code>. If the end of the stream is reached, an
553 * @param off the starting position withinb to write to.
556 * @exception IndexOutOfBoundsException if <code>off</code> is
557 * negative, <code>len</code> is negative, or <code>off +
565 void readFully(short[] s, int off, int len) throws IOException;
571 * <code>off</code>. If the end of the stream is reached, an
578 * @param off the starting position withinb to write to.
581 * @exception IndexOutOfBoundsException if <code>off</code> is
582 * negative, <code>len</code> is negative, or <code>off +
590 void readFully(char[] c, int off, int len) throws IOException;
596 * <code>off</code>. If the end of the stream is reached, an
603 * @param off the starting position withinb to write to.
606 * @exception IndexOutOfBoundsException if <code>off</code> is
607 * negative, <code>len</code> is negative, or <code>off +
615 void readFully(int[] i, int off, int len) throws IOException;
621 * <code>off</code>. If the end of the stream is reached, an
628 * @param off the starting position withinb to write to.
631 * @exception IndexOutOfBoundsException if <code>off</code> is
632 * negative, <code>len</code> is negative, or <code>off +
640 void readFully(long[] l, int off, int len) throws IOException;
646 * index <code>off</code>. If the end of the stream is reached,
653 * @param off the starting position withinb to write to.
656 * @exception IndexOutOfBoundsException if <code>off</code> is
657 * negative, <code>len</code> is negative, or <code>off +
665 void readFully(float[] f, int off, int len) throws IOException;
671 * index <code>off</code>. If the end of the stream is reached,
678 * @param off the starting position withinb to write to.
681 * @exception IndexOutOfBoundsException if <code>off</code> is
682 * negative, <code>len</code> is negative, or <code>off +
690 void readFully(double[] d, int off, int len) throws IOException;