Searched refs:Bytes (Results 1 - 25 of 53) sorted by relevance

123

/openjdk7/jdk/test/sun/tools/jstat/
H A DclassOutput1.awk6 # Loaded Bytes Unloaded Bytes Time
13 /^Loaded Bytes Unloaded Bytes Time $/ {
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dbytes_linux_zero.inline.hpp33 inline u2 Bytes::swap_u2(u2 x) {
37 inline u4 Bytes::swap_u4(u4 x) {
41 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dbytes_linux_x86.inline.hpp32 inline u2 Bytes::swap_u2(u2 x) {
49 inline u4 Bytes::swap_u4(u4 x) {
65 inline u8 Bytes::swap_u8(u8 x) {
81 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
85 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DBytes.java31 public class Bytes { class
34 public Bytes(MachineDescription machDesc) { method in class:Bytes
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dbytes_windows_x86.inline.hpp32 inline u2 Bytes::swap_u2(u2 x) {
46 inline u4 Bytes::swap_u4(u4 x) {
61 inline u8 Bytes::swap_u8(u8 x) {
69 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
80 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dbytes_solaris_x86.inline.hpp40 inline u2 Bytes::swap_u2(u2 x) {
44 inline u4 Bytes::swap_u4(u4 x) {
48 inline u8 Bytes::swap_u8(u8 x) {
59 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbytes_bsd_x86.inline.hpp58 inline u2 Bytes::swap_u2(u2 x) {
75 inline u4 Bytes::swap_u4(u4 x) {
91 inline u8 Bytes::swap_u8(u8 x) {
107 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
111 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileStream.cpp58 return Bytes::get_Java_u2(tmp);
69 return Bytes::get_Java_u4(tmp);
80 return Bytes::get_Java_u8(tmp);
H A DclassFileStream.hpp93 u2 res = Bytes::get_Java_u2(_current);
101 u4 res = Bytes::get_Java_u4(_current);
109 u8 res = Bytes::get_Java_u8(_current);
H A DstackMapTableFormat.hpp94 return Bytes::get_Java_u2(cpool_index_addr());
98 Bytes::put_Java_u2(cpool_index_addr(), idx);
103 return Bytes::get_Java_u2(bci_addr());
108 Bytes::put_Java_u2(bci_addr(), bci);
294 return Bytes::get_Java_u2(offset_delta_addr()) + 1;
298 Bytes::put_Java_u2(offset_delta_addr(), offset_delta - 1);
421 return Bytes::get_Java_u2(offset_delta_addr()) + 1;
425 Bytes::put_Java_u2(offset_delta_addr(), offset_delta - 1);
487 return Bytes::get_Java_u2(offset_delta_addr()) + 1;
490 Bytes
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dbytes_bsd_zero.inline.hpp55 inline u2 Bytes::swap_u2(u2 x) {
59 inline u4 Bytes::swap_u4(u4 x) {
63 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/jdk/test/sun/security/smartcardio/
H A DTestTransmit.java64 Bytes response = parseWildcard(line);
86 private static class Bytes { class in class:TestTransmit
89 Bytes(byte[] bytes, byte[] mask) { method in class:TestTransmit.Bytes
95 private static Bytes parseWildcard(String s) {
125 return new Bytes(b, m);
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp296 if (Bytes::get_Java_u2(_s_old->bcp() + 1) != Bytes::get_Java_u2(_s_new->bcp() + 1))
300 if (Bytes::get_Java_u4(_s_old->bcp() + 1) != Bytes::get_Java_u4(_s_new->bcp() + 1))
333 int default_old = (int) Bytes::get_Java_u4(aligned_bcp_old);
334 int default_new = (int) Bytes::get_Java_u4(aligned_bcp_new);
338 int npairs_old = (int) Bytes::get_Java_u4(aligned_bcp_old + jintSize);
339 int npairs_new = (int) Bytes::get_Java_u4(aligned_bcp_new + jintSize);
343 int match_old = (int) Bytes::get_Java_u4(aligned_bcp_old + (2+2*i)*jintSize);
344 int match_new = (int) Bytes
[all...]
H A DjvmtiClassFileReconstituter.cpp676 Bytes::put_Java_u2(writeable_address(2), x);
680 Bytes::put_Java_u4(writeable_address(4), x);
684 Bytes::put_Java_u8(writeable_address(8), x);
732 int cpci = Bytes::get_native_u2(bcp+1);
735 cpci = Bytes::get_native_u4(bcp+1);
741 Bytes::put_Java_u2((address)(p+1), (u2)i); // java byte ordering
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSecmod.java256 Bytes bytes = new Bytes(getDigest(cert, "SHA-1"));
267 private TrustAttributes getModuleTrust(ModuleType type, Bytes bytes) {
373 private Map<Bytes,TrustAttributes> trust;
508 Bytes bytes = new Bytes(getDigest(cert, "SHA-1"));
522 TrustAttributes getTrust(Bytes hash) {
614 TrustAttributes(Token token, X509Certificate cert, Bytes bytes, long trustValue) {
674 Bytes getHash() {
675 return new Bytes(shaHas
704 private static class Bytes { class in class:Secmod
706 Bytes(byte[] b) { method in class:Secmod.Bytes
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.hpp105 inline int int_at(int bci) const { return Bytes::get_Java_u4(&code_array()[bci]); }
106 inline void int_at_put(int bci, int value) { Bytes::put_Java_u4(&code_array()[bci], value); }
109 inline short short_at(int bci) const { return (short)Bytes::get_Java_u2(&code_array()[bci]); }
110 inline void short_at_put(int bci, short value) { Bytes::put_Java_u2((address) &code_array()[bci], value); }
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp65 int get_Java_u2_at (int offset) const { return Bytes::get_Java_u2(addr_at(offset)); }
66 int get_Java_u4_at (int offset) const { return Bytes::get_Java_u4(addr_at(offset)); }
67 int get_native_u2_at (int offset) const { return Bytes::get_native_u2(addr_at(offset)); }
68 int get_native_u4_at (int offset) const { return Bytes::get_native_u4(addr_at(offset)); }
94 return Bytes::get_native_u2(p);
95 else return Bytes::get_Java_u2(p);
103 return Bytes::get_native_u2(addr_at(1)) + constantPoolOopDesc::CPCACHE_INDEX_TAG;
108 return Bytes::get_native_u4(addr_at(1));
116 return (jshort) Bytes::get_Java_u2(addr_at(1));
120 return (jint) Bytes
[all...]
H A Drewriter.cpp137 int cp_index = Bytes::get_Java_u2(p);
139 Bytes::put_native_u2(p, cache_index);
143 int cache_index = Bytes::get_native_u2(p);
145 Bytes::put_Java_u2(p, pool_index);
199 int cp_index = Bytes::get_Java_u2(p);
215 Bytes::put_native_u4(p, constantPoolCacheOopDesc::encode_secondary_index(cpc2));
219 Bytes::get_native_u4(p));
224 Bytes::put_Java_u4(p, 0);
225 Bytes::put_Java_u2(p, pool_index);
236 int cp_index = is_wide ? Bytes
[all...]
H A DbytecodeInterpreter.cpp959 SET_STACK_INT((int16_t)Bytes::get_Java_u2(pc + 1), 0);
1026 uint16_t reg = Bytes::get_Java_u2(pc + 2);
1066 int16_t offset = (int16_t)Bytes::get_Java_u2(pc+4);
1382 ? (int16_t)Bytes::get_Java_u2(pc + 1) : 3; \
1390 ? (int16_t)Bytes::get_Java_u2(pc + 1) : 3; \
1401 ? (int16_t)Bytes::get_Java_u2(pc + 1) : 3; \
1411 ? (int16_t)Bytes::get_Java_u2(pc + 1) : 3; \
1421 ? (int16_t)Bytes::get_Java_u2(pc + 1) : 3; \
1441 int32_t low = Bytes::get_Java_u4((address)&lpc[1]);
1442 int32_t high = Bytes
[all...]
H A DabstractInterpreter.hpp257 if ((int) sizeof(jint) < wordSize && !Bytes::is_Java_byte_ordering_different())
267 return Bytes::get_native_u8((address)slot_addr);
274 Bytes::put_native_u8((address)slot_addr, value);
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp1386 u2 len = Bytes::get_Java_u2(bytes);
1398 u4 val = Bytes::get_Java_u4(bytes);
1404 u4 val = Bytes::get_Java_u4(bytes);
1410 u8 val = Bytes::get_Java_u8(bytes);
1417 u8 val = Bytes::get_Java_u8(bytes);
1424 idx1 = Bytes::get_Java_u2(bytes);
1430 idx1 = Bytes::get_Java_u2(bytes);
1436 idx1 = Bytes::get_Java_u2(bytes);
1437 idx2 = Bytes::get_Java_u2(bytes+2);
1443 idx1 = Bytes
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dbytes_x86.hpp30 class Bytes: AllStatic { class in inherits:AllStatic
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkRuntime.hpp81 return Bytes::get_Java_u2(bcp(thread, bci) + 1);
/openjdk7/jdk/src/share/native/sun/awt/giflib/
H A Dgifalloc.c181 ep->Bytes = (char *)malloc(ep->ByteCount);
182 if (ep->Bytes == NULL)
186 memcpy(ep->Bytes, ExtData, Len);
203 (void)free((char *)ep->Bytes);
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DBytes.java37 public class Bytes implements Benchmark { class in inherits:Benchmark

Completed in 87 milliseconds

123