Searched defs:off (Results 376 - 400 of 457) sorted by relevance

<<111213141516171819

/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageLookUp_f.c233 mlib_s32 off; local
237 off = (mlib_s32) ((4 - ((mlib_addr) dst & 3)) & 3);
239 for (i = 0; i < off; i++, sp++) {
323 mlib_s32 off; local
327 off = (mlib_s32) ((4 - ((mlib_addr) dst & 3)) & 3);
329 for (i = 0; i < off - 1; i += 2, sp += 2) {
335 if ((off & 1) != 0) {
436 mlib_s32 off; local
440 off = (mlib_s32) ((4 - ((mlib_addr) dst & 3)) & 3);
442 if (off
586 mlib_s32 off; local
808 mlib_s32 off; local
906 mlib_s32 off; local
1027 mlib_s32 off; local
1185 mlib_s32 off; local
1472 mlib_s32 off; local
1523 mlib_s32 off; local
1591 mlib_s32 off; local
1684 mlib_s32 off; local
1876 mlib_s32 s0, t0, s1, t1, t, t2, off; local
2039 mlib_s32 size = xsize, off; local
2170 mlib_s32 size = xsize, off; local
2320 mlib_s32 size = xsize, off; local
2440 mlib_s32 size = xsize, off; local
2589 mlib_s32 size = xsize, off; local
2709 mlib_s32 size = xsize, off; local
3026 mlib_s32 size = xsize, off; local
3420 mlib_s32 off; local
3525 mlib_s32 off; local
3657 mlib_s32 off; local
[all...]
/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/tools/java/
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/java2d/pisces/
H A DDasher.java111 private void emitSeg(float[] buf, int off, int type) { argument
114 out.curveTo(buf[off+0], buf[off+1],
115 buf[off+2], buf[off+3],
116 buf[off+4], buf[off+5]);
119 out.quadTo(buf[off+0], buf[off+1],
120 buf[off
143 goTo(float[] pts, int off, final int type) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DExchangeImpl.java442 public void write(byte b[], int off, int len) throws IOException { argument
444 wrapped.write (b, off, len);
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/sun/nio/cs/
H A DCharsetMapping.java209 int off = 0;
211 int n = in.read(bb, off, N);
215 off += n;
220 int off = 0; field in class:CharsetMapping
224 int size = ((bb[off++]&0xff)<<8) | (bb[off++]&0xff);
227 cc[i] = (char)(((bb[off++]&0xff)<<8) | (bb[off++]&0xff));
271 b1MinDB1 = ((bb[off++]&0xff)<<8) | (bb[off
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java461 * Shorten long class name <em>str</em>, i.e., chop off the <em>prefix</em>,
467 * @param prefix The prefix the get rid off
737 if(buf.length() > 1) // Tack off the extra ", "
1322 public int read(char[] cbuf, int off, int len) throws IOException { argument
1324 cbuf[off + i] = (char)read();
1361 public void write(char[] cbuf, int off, int len) throws IOException { argument
1363 write(cbuf[off + i]);
1366 public void write(String str, int off, int len) throws IOException { argument
1367 write(str.toCharArray(), off, len);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDRInputStream.java375 public final int read(byte b[], int off, int len) throws IOException { argument
376 return impl.read(b, off, len);
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletPanel.java172 // 4668479: Option to turn off codebase lookup in AppletClassLoader
1304 private int readShort(byte[] b, int off) { argument
1305 int hi = readByte(b[off]);
1306 int lo = readByte(b[off + 1]);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageRepresentation.java301 int off=0;
305 newpixels[off++] = cmodel.getRGB(srcpixels);
337 byte[] pix, int off, int scansize,
341 byte[] pix, int off, int scansize,
347 byte pix[], int off, int scansize) {
348 int lineOff=off;
375 off -= x;
381 off -= y*scansize;
398 // off is first pixel read so it must be in bounds
399 if (off <
336 setICMpixels(int x, int y, int w, int h, int[] lut, byte[] pix, int off, int scansize, IntegerComponentRaster ict) argument
339 setDiffICM(int x, int y, int w, int h, int[] lut, int transPix, int numLut, IndexColorModel icm, byte[] pix, int off, int scansize, ByteComponentRaster bct, int chanOff) argument
345 setPixels(int x, int y, int w, int h, ColorModel model, byte pix[], int off, int scansize) argument
543 setPixels(int x, int y, int w, int h, ColorModel model, int pix[], int off, int scansize) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.cpp717 intptr_t off = 0; local
718 Node* k = AddPNode::Ideal_base_and_offset(adr, phase, off);
721 if (!tkp || off != in_bytes(Klass::java_mirror_offset())) return NULL;
1235 // // Do not this to compares off of the counted-loop-end. These guys are
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCodingChooser.java1161 public void write(byte b[], int off, int len) throws IOException { argument
1163 if (out != null) out.write(b, off, len);
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);
H A DPackageReader.java118 public int read(byte b[], int off, int len) throws IOException { argument
120 int nr = super.read(b, off, len);
139 public int read(byte b[], int off, int len) throws IOException {
147 int nr = super.read(b, off, len);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java81 public void update(byte[] data, int off, int len) { argument
83 crc = crcTable[(crc ^ data[off + n]) & 0xff] ^ (crc >>> 8);
115 public int read(byte[] b, int off, int len) throws IOException { argument
119 public void write(byte[] b, int off, int len) throws IOException { argument
120 crc.update(b, off, len);
121 stream.write(b, off, len);
203 public int read(byte[] b, int off, int len) throws IOException { argument
207 public void write(byte[] b, int off, int len) throws IOException { argument
213 def.setInput(b, off, len);
222 int off
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeUtility.java1455 public void write(byte b[], int off, int len) throws IOException { argument
1456 len += off;
1457 for (int i = off; i < len ; i++)
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Font.c773 (JNIEnv *env, jobject this, jbyteArray str, jint off, jint len)
772 Java_sun_awt_motif_X11FontMetrics_bytesWidth(JNIEnv *env, jobject this, jbyteArray str, jint off, jint len) argument
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
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...]
H A Dmlib_v_ImageConvMxN_8.c140 mlib_s32 ik, jk, ik_last, jk_size, coff, off, doff; local
267 off = coff & 7;
268 vis_write_gsr(gsr_scale + off);
304 off = coff & 7;
305 vis_write_gsr(gsr_scale + off);
351 off = coff & 7;
352 vis_write_gsr(gsr_scale + off);
354 if (off == 0) {
381 else if (off == 4) {
471 off
[all...]
H A Dmlib_v_ImageConvMxN_8ext.c159 mlib_s32 ik, jk, ik_last, jk_size, coff, off, doff; local
287 off = coff & 7;
288 vis_write_gsr(gsr_scale + off);
325 off = coff & 7;
326 vis_write_gsr(gsr_scale + off);
373 off = coff & 7;
374 vis_write_gsr(gsr_scale + off);
376 if (off == 0) {
404 else if (off == 4) {
496 off
845 mlib_s32 ik, jk, ik_last, jk_size, coff, off, doff; local
[all...]
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...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_ImageZoom_NN.c505 mlib_s32 off = (mlib_addr) dl & 7; local
507 da = (DTYPE *) (dl - off);
510 if (off) { /* not aligned */
513 off *= 8;
515 LSHIFT(dd_old, da[0], 64 - off);
517 RSHIFT(dd_old, da[0], 64 - off);
544 /* *da++ = (dd_old >> (64 - off)) | (dd << off);*/
545 RSHIFT(dd_old, dd_old, 64 - off);
546 LSHIFT(dtmp, dd, off);
[all...]
/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

Completed in 104 milliseconds

<<111213141516171819