Searched refs:ofs (Results 26 - 33 of 33) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSACore.java76 public static byte[] convert(byte[] b, int ofs, int len) { argument
77 if ((ofs == 0) && (len == b.length)) {
81 System.arraycopy(b, ofs, t, 0, len);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD5.java100 void implDigest(byte[] out, int ofs) { argument
111 i2bLittle(state, 0, out, ofs, 16);
145 void implCompress(byte[] buf, int ofs) { argument
146 b2iLittle64(buf, ofs, x);
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DPCSC.java68 (long cardId, int protocol, byte[] buf, int ofs, int len)
67 SCardTransmit(long cardId, int protocol, byte[] buf, int ofs, int len) argument
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsPrfGenerator.java294 int ofs = 0;
334 output[ofs++] ^= tmp[i];
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.cpp248 const size_t ofs = (size_t(addr) + adjusted_prefix_size) & (suffix_align - 1); local
249 if (ofs != 0) {
259 const size_t extra = MAX2(ofs, suffix_align - ofs);
/openjdk7/jdk/src/share/native/sun/security/smartcardio/
H A Dpcsc.c205 int ofs = (int)jOfs; local
213 rv = CALL_SCardTransmit(card, &sendPci, sbuf + ofs, len, NULL, rbuf, &rlen);
/openjdk7/jdk/test/java/security/Provider/
H A DGetInstance.java180 public void engineUpdate(byte[] b, int ofs, int len) {} argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp175 const size_t ofs = pointer_delta(end_region_addr, destination); local
176 assert(ofs < _partial_obj_size, "sanity");
177 _first_src_addr = sd.region_to_addr(src_region_idx) + ofs;

Completed in 54 milliseconds

12