Lines Matching refs:len

129      * Reads up to <code>len</code> bytes from the stream, and stores
140 * @param len the maximum number of <code>byte</code>s to read.
148 * negative, <code>len</code> is negative, or <code>off +
149 * len</code> is greater than <code>b.length</code>.
152 int read(byte[] b, int off, int len) throws IOException;
155 * Reads up to <code>len</code> bytes from the stream, and
165 * @param len the maximum number of <code>byte</code>s to read.
167 * @exception IndexOutOfBoundsException if <code>len</code> is
174 void readBytes(IIOByteBuffer buf, int len) throws IOException;
500 * Reads <code>len</code> bytes from the stream, and stores them
510 * @param len the maximum number of <code>byte</code>s to read.
513 * negative, <code>len</code> is negative, or <code>off +
514 * len</code> is greater than <code>b.length</code>.
521 void readFully(byte[] b, int off, int len) throws IOException;
543 * Reads <code>len</code> shorts (signed 16-bit integers) from the
554 * @param len the maximum number of <code>short</code>s to read.
557 * negative, <code>len</code> is negative, or <code>off +
558 * len</code> is greater than <code>s.length</code>.
565 void readFully(short[] s, int off, int len) throws IOException;
568 * Reads <code>len</code> chars (unsigned 16-bit integers) from the
579 * @param len the maximum number of <code>char</code>s to read.
582 * negative, <code>len</code> is negative, or <code>off +
583 * len</code> is greater than <code>c.length</code>.
590 void readFully(char[] c, int off, int len) throws IOException;
593 * Reads <code>len</code> ints (signed 32-bit integers) from the
604 * @param len the maximum number of <code>int</code>s to read.
607 * negative, <code>len</code> is negative, or <code>off +
608 * len</code> is greater than <code>i.length</code>.
615 void readFully(int[] i, int off, int len) throws IOException;
618 * Reads <code>len</code> longs (signed 64-bit integers) from the
629 * @param len the maximum number of <code>long</code>s to read.
632 * negative, <code>len</code> is negative, or <code>off +
633 * len</code> is greater than <code>l.length</code>.
640 void readFully(long[] l, int off, int len) throws IOException;
643 * Reads <code>len</code> floats (32-bit IEEE single-precision
654 * @param len the maximum number of <code>float</code>s to read.
657 * negative, <code>len</code> is negative, or <code>off +
658 * len</code> is greater than <code>f.length</code>.
665 void readFully(float[] f, int off, int len) throws IOException;
668 * Reads <code>len</code> doubles (64-bit IEEE double-precision
679 * @param len the maximum number of <code>double</code>s to read.
682 * negative, <code>len</code> is negative, or <code>off +
683 * len</code> is greater than <code>d.length</code>.
690 void readFully(double[] d, int off, int len) throws IOException;