Searched refs:off (Results 426 - 450 of 571) sorted by relevance

<<11121314151617181920>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DWrapperInputStream.java81 public int read(byte b[], int off, int len) throws IOException { argument
82 return stream.read(b, off, len);
/openjdk7/hotspot/agent/make/
H A Dstart-debug-server-windbg.bat1 @echo off
H A Dstart-debug-server-windbg64.bat1 @echo off
H A Dstart-rmiregistry.bat1 @echo off
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java2282 int off = 0;
2286 while ((next = indexOf(ch, off)) != -1) {
2288 list.add(substring(off, next));
2289 off = next + 1;
2292 list.add(substring(off, value.length));
2293 off = value.length;
2298 if (off == 0)
2303 list.add(substring(off, value.length));
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.hpp141 AddPNode( Node *base, Node *ptr, Node *off ) : Node(0,base,ptr,off) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelByteBuffer.java98 public int read(byte b[], int off, int len) throws IOException { argument
103 len = raf.read(b, off, len);
H A DSoftMainMixer.java886 public int read(byte[] b, int off, int len) {
888 int offlen = off + len;
889 int orgoff = off;
891 while (off < offlen) {
896 while (off < offlen && bbuffer_pos < bbuffer_len)
897 b[off++] = bbuffer[bbuffer_pos++];
900 return off - orgoff;
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileChannelImpl.c75 jint prot, jlong off, jlong len)
100 off); /* Offset into file */
74 Java_sun_nio_ch_FileChannelImpl_map0(JNIEnv *env, jobject this, jint prot, jlong off, jlong len) argument
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipConstants.java230 static final int ENDCOM(byte[] b, int off) { return SH(b, off + 20);} argument
H A DZipUtils.java101 public static void writeBytes(OutputStream os, byte[] b, int off, int len) argument
104 os.write(b, off, len);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConv_16nw.c1416 mlib_s32 off, kh; local
1461 for (off = 0; off < (n - 4); off += 4) {
1462 pk = k + off;
1486 pk = k + off;
1493 kh = n - off;
1646 mlib_s32 mn, l, off, kw, bsize, buff_ind; local
1733 for (off = 0; off <
2059 mlib_s32 l, off, kw; local
[all...]
H A Dmlib_ImageConv_8nw.c1417 mlib_s32 off, kh; local
1462 for (off = 0; off < (n - 4); off += 4) {
1463 pk = k + off;
1487 pk = k + off;
1494 kh = n - off;
1647 mlib_s32 mn, l, off, kw, bsize, buff_ind; local
1734 for (off = 0; off <
2060 mlib_s32 l, off, kw; local
[all...]
H A Dmlib_ImageConv_u16nw.c1416 mlib_s32 off, kh; local
1461 for (off = 0; off < (n - 4); off += 4) {
1462 pk = k + off;
1486 pk = k + off;
1493 kh = n - off;
1646 mlib_s32 mn, l, off, kw, bsize, buff_ind; local
1733 for (off = 0; off <
2059 mlib_s32 l, off, kw; local
[all...]
H A Dmlib_ImageConv_16ext.c1631 mlib_s32 l, k_off, off, bsize; local
1699 for (off = 0; off < (n - 4); off += 4) {
1721 kh = n - off;
1881 mlib_s32 mn, l, off, kw, bsize, buff_ind; variable
1973 for (off = 0; off < m;) {
1974 FTYPE *buff = buff_l + off;
1976 kw = m - off;
2340 mlib_s32 l, off, kw, bsize, buff_ind; variable
[all...]
H A Dmlib_ImageConv_8ext.c1631 mlib_s32 l, k_off, off, bsize; local
1699 for (off = 0; off < (n - 4); off += 4) {
1721 kh = n - off;
1881 mlib_s32 mn, l, off, kw, bsize, buff_ind; variable
1973 for (off = 0; off < m;) {
1974 FTYPE *buff = buff_l + off;
1976 kw = m - off;
2340 mlib_s32 l, off, kw, bsize, buff_ind; variable
[all...]
H A Dmlib_ImageConv_u16ext.c1631 mlib_s32 l, k_off, off, bsize; local
1699 for (off = 0; off < (n - 4); off += 4) {
1721 kh = n - off;
1881 mlib_s32 mn, l, off, kw, bsize, buff_ind; variable
1973 for (off = 0; off < m;) {
1974 FTYPE *buff = buff_l + off;
1976 kw = m - off;
2340 mlib_s32 l, off, kw, bsize, buff_ind; variable
[all...]
H A Dmlib_ImageConv_32nw.c930 mlib_s32 off, kh; local
971 for (off = 0; off < (n - 4); off += 4) {
972 pk = k + off;
996 pk = k + off;
1003 kh = n - off;
1156 mlib_s32 l, off, kw, bsize, buff_ind, mn; local
1235 for (off = 0; off <
[all...]
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSASignature.java159 protected void engineUpdate(byte[] b, int off, int len) argument
161 md.update(b, off, len);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java1225 int off = (int) (msg.where & ((1L << WHEREOFFSETBITS) - 1));
1226 if (off > dataLength) off = dataLength;
1232 for (i = off ; (i > 0) && (data[i - 1] != '\n') && (data[i - 1] != '\r') ; i--);
1233 for (j = off ; (j < dataLength) && (data[j] != '\n') && (data[j] != '\r') ; j++);
1236 char strdata[] = new char[(off - i) + 1];
1237 for (j = i ; j < off ; j++) {
1240 strdata[off-i] = '^';
/openjdk7/jdk/test/java/security/Provider/
H A DGetInstance.java195 protected void engineUpdate(byte[] b, int off, int len) throws SignatureException { } argument
218 protected void engineUpdate(byte[] b, int off, int len) throws SignatureException { } argument
/openjdk7/jdk/test/java/util/zip/
H A DInflateIn_DeflateOut.java64 public int read(byte b[], int off, int len) { argument
66 return super.read(b, off, len);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DConnectionMultiplexer.java370 * @param off offset of first array index of packet
374 byte buf[], int off, int len) throws IOException
382 dataOut.write(buf, off, len);
373 sendTransmit(MultiplexConnectionInfo info, byte buf[], int off, int len) argument
/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/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp56 // cut the heads off of the registers. We have to do a very extensive
68 // heads chopped off on interrupt). We have to save some %g registers here
129 // Save 64-bit O registers; they will get their heads chopped off on a 'save'.
142 // to Oregs here to avoid interrupts cutting off their heads
346 // refer to 4-byte stack slots. All stack slots are based off of the window
378 // passed in I's, because longs in I's get their heads chopped off at
432 // On 32-bit SPARC put longs always on the stack to keep the pressure off
1184 int off = regs[i].first()->reg2stack(); local
1185 if (off > max_stack_slots) max_stack_slots = off;
1188 int off = regs[i].second()->reg2stack(); local
1219 int off = regs[i].first()->reg2stack(); local
1223 int off = regs[i].second()->reg2stack(); local
3087 int off = local
3105 int off = STACK_BIAS + reg2offset(dst.first()); local
3137 int off = STACK_BIAS + conversion_temp * VMRegImpl::stack_slot_size; local
3167 int off = STACK_BIAS + conversion_temp * VMRegImpl::stack_slot_size; local
[all...]

Completed in 110 milliseconds

<<11121314151617181920>>