Searched refs:off (Results 401 - 425 of 571) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/java2d/cmm/lcms/
H A DLCMSImageLayout.java296 int off = safeAdd(offset, lastPixelOffset);
298 if (off < 0 || off >= dataArrayLength) {
/openjdk7/jdk/src/windows/native/sun/tools/attach/
H A DWindowsVirtualMachine.c93 #pragma check_stack (off)
315 (JNIEnv *env, jclass cls, jlong hPipe, jbyteArray ba, jint off, jint baLen)
322 remaining = (DWORD)(baLen - off);
344 (*env)->SetByteArrayRegion(env, ba, off, (jint)nread, (jbyte *)(buf+off));
314 Java_sun_tools_attach_WindowsVirtualMachine_readPipe(JNIEnv *env, jclass cls, jlong hPipe, jbyteArray ba, jint off, jint baLen) argument
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DSSLStreams.java351 * data off the channel. Reset pointers
352 * for reading off SocketChannel
510 public int read (byte[] buf, int off, int len) throws IOException { argument
537 bbuf.get (buf, off, len);
624 public void write(byte b[], int off, int len) throws IOException { argument
631 buf.put (b, off, l);
633 off += l;
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java706 * @param off the offset to start from in the array of bytes.
712 public final void update(byte[] data, int off, int len) argument
715 engineUpdate(data, off, len);
1147 protected void engineUpdate(byte[] b, int off, int len) argument
1150 sigSpi.engineUpdate(b, off, len);
1242 protected void engineUpdate(byte[] b, int off, int len) argument
1245 data.write(b, off, len);
1248 byte[] out = cipher.update(b, off, len);
H A DSignatureSpi.java122 * @param off the offset to start from in the array of bytes
128 protected abstract void engineUpdate(byte[] b, int off, int len) argument
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarVerifier.java205 public void update(int n, byte[] b, int off, int len, argument
211 baos.write(b, off, n);
213 mev.update(b, off, n);
461 public int read(byte b[], int off, int len) throws IOException { argument
467 int n = is.read(b, off, len);
468 jv.update(n, b, off, len, mev);
471 jv.update(-1, b, off, len, mev);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageConv_8nw.c452 mlib_s32 ik, ik_last, off, doff; variable
545 off = ik * NCHAN;
546 doff = off / 8;
547 off &= 7;
551 vis_write_gsr(gsr_scale + off);
556 * if ((off & 3) || (ik == (KSIZE - 1))) {
562 if (off == 0) {
588 else if (off == 4) {
661 off = ik_last * NCHAN;
662 doff = off /
873 mlib_s32 ik, jk, ik_last, jk_size, coff, off, doff; local
[all...]
H A Dmlib_v_ImageConvIndex3_8_16nw.c444 mlib_s32 ik, ik_last, off, doff; variable
523 off = ik*NCHAN;
524 doff = off/8;
525 off &= 7;
529 vis_write_gsr(gsr_scale + off);
533 if ((off & 3) || (ik == (KSIZE - 1))) {
539 if (off == 0) {
565 } else if (off == 4) {
638 off = ik_last*NCHAN;
639 doff = off/
850 mlib_s32 ik, jk, ik_last, jk_size, coff, off, doff; local
[all...]
H A Dmlib_v_ImageConvIndex3_8_8nw.c444 mlib_s32 ik, ik_last, off, doff; variable
523 off = ik*NCHAN;
524 doff = off/8;
525 off &= 7;
529 vis_write_gsr(gsr_scale + off);
533 if ((off & 3) || (ik == (KSIZE - 1))) {
539 if (off == 0) {
565 } else if (off == 4) {
638 off = ik_last*NCHAN;
639 doff = off/
850 mlib_s32 ik, jk, ik_last, jk_size, coff, off, doff; local
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DDoubleByte.java529 int off = 0x100;
564 index = off;
565 off += 0x100;
582 index = off;
583 off += 0x100;
597 c2bIndex[index] = (char)off;
598 off += 0x100;
H A DEUC_TW.java136 int off = 0;
139 flag[off++] = (byte)(c >> 8);
140 flag[off++] = (byte)(c & 0xff);
522 int off = 0;
525 char c = db.charAt(off);
527 if ((b2cIsSupp[off] & (1 << p)) != 0) {
537 off++;
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java1939 int off = offsets[i];
1942 Bits.putBoolean(buf, off, unsafe.getBoolean(obj, key));
1946 buf[off] = unsafe.getByte(obj, key);
1950 Bits.putChar(buf, off, unsafe.getChar(obj, key));
1954 Bits.putShort(buf, off, unsafe.getShort(obj, key));
1958 Bits.putInt(buf, off, unsafe.getInt(obj, key));
1962 Bits.putFloat(buf, off, unsafe.getFloat(obj, key));
1966 Bits.putLong(buf, off, unsafe.getLong(obj, key));
1970 Bits.putDouble(buf, off, unsafe.getDouble(obj, key));
1993 int off
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java386 public int getIntAt(int off) { argument
387 return getInt(bytes, pc+off);
389 public int getShortAt(int off) { argument
390 return getShort(bytes, pc+off);
392 public int getByteAt(int off) { argument
393 return getByte(bytes, pc+off);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPKCS12PBECipherCore.java145 int off, i;
146 for (i = 0, off = 0; i < loop; i++, off += src.length)
147 System.arraycopy(src, 0, dst, off + start, src.length);
148 System.arraycopy(src, 0, dst, off + start, len - off);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToXMLSAXHandler.java516 public void characters(char[] ch, int off, int len) throws SAXException argument
546 m_saxHandler.characters(ch, off, len);
550 fireCharEvent(ch, off, len);
589 // we don't want to leave serializer to fire off this event,
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DNType.java251 Map<Width,Integer> off = new HashMap();
253 off.put(w, 0);
254 return new NField(a.name, a.type, off);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpClientTransport.java323 public void write(byte b[], int off, int len) throws IOException { argument
326 out.write(b, off, sent); // don't use super.write() as it writes byte-by-byte
328 off += sent;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DInstructionDecoder.java451 int off = 0;
453 off = readInt32(bytesArray, byteIndex);
457 off = readInt16(bytesArray, byteIndex);
460 op = new X86DirectAddress((long)off);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRescaleOp.java192 float off[],
200 float bandOff = off[band];
227 float off[],
235 float bandOff = off[band];
191 createByteLut(float scale[], float off[], int nBands, int nElems) argument
226 createShortLut(float scale[], float off[], int nBands, int nElems) argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java221 int off = Math.abs(destX - p.x);
222 return off <= MOUSE_ENDING_OFFSET;
230 int off = Math.abs(destX - p.x);
231 return off <= MOUSE_ENDING_OFFSET;
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSA.java136 protected void engineUpdate(byte[] data, int off, int len) { argument
137 dataSHA.update(data, off, len);
183 protected void engineUpdate(byte[] data, int off, int len) { argument
188 System.arraycopy(data, off, digestBuffer, ofs, len);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DInputRecord.java42 * SSL 3.0 records, as pulled off a TCP stream. Input records are
438 private int readFully(InputStream s, byte b[], int off, int len) argument
442 int readLen = s.read(b, off + n, len - n);
450 ByteBuffer bb = ByteBuffer.wrap(b, off + n, readLen);
685 void writeBuffer(OutputStream s, byte [] buf, int off, int len) argument
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DScannerInputReader.java124 public int read(char[] buffer, int off, int len) { argument
H A DParser.java124 public void packageDeclaration(long off, IdentifierToken nm) { argument
127 packageDeclaration(off, nm.id);
133 protected void packageDeclaration(long off, Identifier nm) { argument
142 public void importClass(long off, IdentifierToken nm) { argument
145 importClass(off, nm.id);
151 protected void importClass(long off, Identifier nm) { argument
160 public void importPackage(long off, IdentifierToken nm) { argument
163 importPackage(off, nm.id);
169 protected void importPackage(long off, Identifier nm) { argument
178 public ClassDefinition beginClass(long off, Strin argument
199 beginClass(long off, String doc, int mod, Identifier nm, Identifier sup, Identifier impl[]) argument
218 endClass(long off, ClassDefinition c) argument
227 endClass(long off, Identifier nm) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharUnicode.java209 public int flush(char buf[], int off, int len) argument

Completed in 85 milliseconds

<<11121314151617181920>>