Searched refs:u8 (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dbytes_windows_x86.inline.hpp61 inline u8 Bytes::swap_u8(u8 x) {
63 return ( (u8(p[0]) << 56) | (u8(p[1]) << 48) | (u8(p[2]) << 40) | (u8(p[3]) << 32) |
64 (u8(p[4]) << 24) | (u8(p[5]) << 16) | (u8(p[6]) << 8) | u8(
[all...]
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceDataTypes.hpp61 typedef u8 classid;
62 typedef u8 stacktraceid;
63 typedef u8 methodid;
64 typedef u8 fieldid;
H A DtraceStream.hpp63 void print_val(const char* label, u8 val) {
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dbytes_solaris_x86.inline.hpp33 extern "C" u8 _raw_swap_u8(u8 x);
35 extern "C" u8 _raw_swap_u8(u4 x, u4 y);
48 inline u8 Bytes::swap_u8(u8 x) {
59 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
79 inline u8 _raw_swap_u8(u8 x) {
109 inline u8 _raw_swap_u8(u4 x, u4 y) {
110 return (((u8)_raw_swap_u
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dbytes_linux_x86.inline.hpp65 inline u8 Bytes::swap_u8(u8 x) {
81 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
82 return (((u8)swap_u4(x))<<32) | swap_u4(y);
85 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dbytes_x86.hpp34 static inline u8 swap_u8_base(u4 x, u4 y); // compiler-dependent implementation
48 static inline u8 get_native_u8(address p) { return *(u8*)p; }
52 static inline void put_native_u8(address p, u8 x) { *(u8*)p = x; }
60 static inline u8 get_Java_u8(address p) { return swap_u8(get_native_u8(p)); }
64 static inline void put_Java_u8(address p, u8 x) { put_native_u8(p, swap_u8(x)); }
70 static inline u8 swap_u8(u8 x);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dbytes_sparc.hpp44 static inline u8 swap_u8(u8 x) { return x; }
67 static inline u8 get_native_u8(address p) {
69 case 0: return *(u8*)p;
71 case 4: return ( u8( ((u4*)p)[0] ) << 32 )
72 | ( u8( ((u4*)p)[1] ) );
74 case 2: return ( u8( ((u2*)p)[0] ) << 48 )
75 | ( u8( ((u2*)p)[1] ) << 32 )
76 | ( u8( ((u2*)p)[2] ) << 16 )
77 | ( u8( ((u
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dbytes_linux_zero.inline.hpp41 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dbytes_zero.hpp34 u8 ul;
61 static inline u8 get_native_u8(address p) {
76 static inline void put_native_u8(address p, u8 x) {
95 static inline u8 get_Java_u8(address p) {
105 return u8(lo) | (u8(hi) << 32);
118 static inline void put_Java_u8(address p, u8 x) {
135 static inline u8 swap_u8(u8 x);
144 static inline u8 get_Java_u
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbytes_bsd_x86.inline.hpp91 inline u8 Bytes::swap_u8(u8 x) {
107 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
108 return (((u8)swap_u4(x))<<32) | swap_u4(y);
111 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DConstantPoolGen.java114 ConstantUtf8 u8 = (ConstantUtf8)constants[s.getStringIndex()];
116 string_table.put(u8.getBytes(), new Index(i));
119 ConstantUtf8 u8 = (ConstantUtf8)constants[s.getNameIndex()];
121 class_table.put(u8.getBytes(), new Index(i));
124 ConstantUtf8 u8 = (ConstantUtf8)constants[n.getNameIndex()];
127 n_a_t_table.put(u8.getBytes() + NAT_DELIM + u8_2.getBytes(), new Index(i));
137 ConstantUtf8 u8 = (ConstantUtf8)constants[clazz.getNameIndex()];
138 String class_name = u8.getBytes().replace('/', '.');
140 u8 = (ConstantUtf8)constants[n.getNameIndex()];
141 String method_name = u8
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileStream.hpp106 // Read u8 from stream
107 u8 get_u8(TRAPS);
108 u8 get_u8_fast() {
109 u8 res = Bytes::get_Java_u8(_current);
H A DclassFileStream.cpp72 u8 ClassFileStream::get_u8(TRAPS) {
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dbytes_bsd_zero.inline.hpp63 inline u8 Bytes::swap_u8(u8 x) {
/openjdk7/jdk/test/tools/launcher/6842838/
H A DCreateBadJar.java155 static int u8(byte[] data, int offset) { method in class:CreateBadJar
160 return u8(data,offset) + (u8(data,offset+1)<<8);
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp300 typedef julong u8; typedef
1072 inline u8 build_u8_from( u1 c1, u1 c2, u1 c3, u1 c4, u1 c5, u1 c6, u1 c7, u1 c8 ) {
1073 return (( u8(c1) << 56 ) & ( u8(0xff) << 56 ))
1074 | (( u8(c2) << 48 ) & ( u8(0xff) << 48 ))
1075 | (( u8(c3) << 40 ) & ( u8(0xff) << 40 ))
1076 | (( u8(c4) << 32 ) & ( u8(
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticArgument.hpp72 u8 _size;
73 u8 _val;
H A DheapDumper.cpp122 * u8 total bytes allocated
123 * u8 total instances allocated
159 * u8 total bytes allocated
160 * u8 total instances allocated
427 void write_u8(u8 x);
506 // Should optimize this for u1/u2/u4/u8 sizes.
558 void DumpWriter::write_u8(u8 x) {
559 u8 v;
567 write_u8((u8)a);
576 write_u8((u8)
[all...]
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DCorruptedZipFiles.java181 static int u8(byte[] data, int offset) { method in class:CorruptedZipFiles
186 return u8(data,offset) + (u8(data,offset+1)<<8);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.hpp134 void write_u8(u8 x);
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp264 Bytes::put_native_u8((address)long_at_addr(which), *((u8*) &l));
275 // u8 temp = *(u8*) &d;
276 Bytes::put_native_u8((address) double_at_addr(which), *((u8*) &d));
397 u8 tmp = Bytes::get_native_u8((address)&base()[which]);
408 u8 tmp = Bytes::get_native_u8((address)&base()[which]);
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp782 event.set_startAddress((u8)low_bound());
783 event.set_commitedTopAddress((u8)high());
784 event.set_reservedTopAddress((u8)high_bound());
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c719 unsigned int u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,ua,ub,uc,ud,ue,uf; local
726 &u8,&u9,&ua,&ub,&uc,&ud,&ue,&uf,
736 staddr[8] = (unsigned char)u8;
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassReader.java909 cpName[i] = String.valueOf(u8());
913 cpName[i] = String.valueOf(Double.longBitsToDouble(u8()));
980 private long u8() throws IOException { method in class:ClassReader
H A DClassWriter.java767 u8(Long.parseLong(name));
771 u8(Double.doubleToLongBits(Double.parseDouble(name)));
799 public void u8(long x) throws IOException { method in class:ClassWriter

Completed in 86 milliseconds

12