Searched defs:off (Results 101 - 125 of 457) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DPositionInputStream.java57 public int read(byte[] b, int off, int len) throws IOException { argument
58 int res = super.read(b, off, len);
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A DthreadLS_solaris_x86.cpp112 ptrdiff_t off ; local
121 off = -1 ;
122 rslt = (*tssa)(&off, NULL, NULL) ; // (off,dtor,darg)
123 if (off != -1) {
124 tlsOffset = off ;
138 off = (*tso)(tlsKey) ;
139 if (off >= 0) {
140 tlsOffset = off ;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DSubImageInputStream.java55 public int read(byte[] b, int off, int len) throws IOException { argument
61 int bytes = stream.read(b, off, len);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DQPDecoderStream.java146 * @param off the start offset of the data.
153 public int read(byte[] buf, int off, int len) throws IOException { argument
161 buf[off+i] = (byte)c;
/openjdk7/jdk/src/solaris/native/java/net/
H A DSocketOutputStream.c65 jint off, jint len) {
104 (*env)->GetByteArrayRegion(env, data, off, chunkLen, (jbyte *)bufP);
130 off += chunkLen;
62 Java_java_net_SocketOutputStream_socketWrite0(JNIEnv *env, jobject this, jobject fdObj, jbyteArray data, jint off, jint len) argument
/openjdk7/jdk/src/windows/native/java/net/
H A DSocketInputStream.c63 jint off, jint len, jint timeout)
134 (*env)->SetByteArrayRegion(env, data, off, nread, (jbyte *)bufP);
61 Java_java_net_SocketInputStream_socketRead0(JNIEnv *env, jobject this, jobject fdObj, jbyteArray data, jint off, jint len, jint timeout) argument
H A DSocketOutputStream.c62 jint off, jint len) {
102 (*env)->GetByteArrayRegion(env, data, off, chunkLen, (jbyte *)bufP);
162 off += chunkLen;
60 Java_java_net_SocketOutputStream_socketWrite0(JNIEnv *env, jobject this, jobject fdObj, jbyteArray data, jint off, jint len) argument
/openjdk7/jdk/test/java/io/StreamTokenizer/
H A DReadAhead.java80 public int read(char[] b, int off, int len) throws IOException { argument
81 int top = off + len;
83 for (i = off; i < top; i++) {
88 return i - off;
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipInfo.java123 static void printCEN(byte[] cen, int off) { argument
125 print(" Signature : %#010x%n", CENSIG(cen, off));
126 if (CENSIG(cen, off) != CENSIG) {
131 CENVEM(cen, off), (CENVEM(cen, off) >> 8),
132 (CENVEM(cen, off) & 0xff) / 10,
133 (CENVEM(cen, off) & 0xff) % 10);
135 CENVER(cen, off), CENVER(cen, off) / 10, CENVER(cen, off)
180 printExtra(byte[] extra, int off, int len) argument
[all...]
/openjdk7/jdk/src/share/native/java/io/
H A DFileInputStream.c71 jbyteArray bytes, jint off, jint len) {
72 return readBytes(env, this, bytes, off, len, fis_fd);
70 Java_java_io_FileInputStream_readBytes(JNIEnv *env, jobject this, jbyteArray bytes, jint off, jint len) argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DAppInputStream.java77 * Read up to "len" bytes into this buffer, starting at "off".
82 public synchronized int read(byte b[], int off, int len) argument
86 } else if (off < 0 || len < 0 || len > b.length - off) {
109 howmany = r.read(b, off, howmany);
H A DByteBufferInputStream.java84 public int read(byte b[], int off, int len) throws IOException { argument
92 } else if (off < 0 || len < 0 || len > b.length - off) {
103 bb.get(b, off, length);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DScannerInputReader.java124 public int read(char[] buffer, int off, int len) { argument
/openjdk7/jdk/test/javax/sound/midi/Gervill/DLSSoundbankReader/
H A DTestGetSoundbankInputStream2.java57 public int read(byte[] b, int off, int len) throws IOException { argument
59 return is.read(b, off, len);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SF2SoundbankReader/
H A DTestGetSoundbankInputStream2.java57 public int read(byte[] b, int off, int len) throws IOException { argument
59 return is.read(b, off, len);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DHexDumpEncoder.java91 protected void encodeAtom(OutputStream o, byte buf[], int off, int len) throws IOException { argument
92 thisLine[currentByte] = buf[off];
93 hexDigit(pStream, buf[off]);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DChunkedOutputStream.java79 public void write (byte[]b, int off, int len) throws IOException { argument
85 System.arraycopy (b,off,buf,pos,remain);
89 off += remain;
91 System.arraycopy (b,off,buf,OFFSET,CHUNK_SIZE);
93 off += CHUNK_SIZE;
99 System.arraycopy (b,off,buf,pos,len);
H A DLeftOverInputStream.java81 protected abstract int readImpl (byte[]b, int off, int len) throws IOException; argument
95 public synchronized int read (byte[]b, int off, int len) throws IOException { argument
99 return readImpl (b, off, len);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpInputStream.java147 public int read(byte b[], int off, int len) throws IOException argument
157 int bytesRead = in.read(b, off, len);
H A DHttpSendInputStream.java76 * @param off the start offset of the data
79 public int read(byte b[], int off, int len) throws IOException argument
85 return in.read(b, off, len);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DStringValueHandler.java43 public void characters(char[] ch, int off, int len) argument
53 _buffer.append(ch, off, len);
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLWriter.java111 * @param off Offset from which to start writing characters
117 public void write(char cbuf[], int off, int len) throws IOException{ argument
125 writer.write(cbuf, off, len);
127 buffer.append(cbuf, off, len);
136 * @param off Offset from which to start writing characters
141 public void write(String str, int off, int len) throws IOException { argument
142 write(str.toCharArray(), off, len);
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DAbstractFilter.java160 public void write(byte[] buf, int off, int len) argument
165 short b = (short)buf[off];
187 off ++;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageFilter.java162 ColorModel model, byte pixels[], int off,
179 off += scansize * diff;
194 off += diff;
214 System.arraycopy(pixels, off, bytePixels, dstPtr, w);
215 off += scansize;
225 intPixels[dstPtr++] = model.getRGB(pixels[off++]&0xff);
227 off += srcRem;
249 ColorModel model, int pixels[], int off,
266 off += scansize * diff;
281 off
161 setPixels(int x, int y, int w, int h, ColorModel model, byte pixels[], int off, int scansize) argument
248 setPixels(int x, int y, int w, int h, ColorModel model, int pixels[], int off, int scansize) argument
[all...]
H A DCropImageFilter.java116 ColorModel model, byte pixels[], int off,
140 off + (y1 - y) * scansize + (x1 - x), scansize);
156 ColorModel model, int pixels[], int off,
180 off + (y1 - y) * scansize + (x1 - x), scansize);
115 setPixels(int x, int y, int w, int h, ColorModel model, byte pixels[], int off, int scansize) argument
155 setPixels(int x, int y, int w, int h, ColorModel model, int pixels[], int off, int scansize) argument

Completed in 52 milliseconds

1234567891011>>