Searched refs:u4 (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dbytes_solaris_x86.inline.hpp31 extern "C" u4 _raw_swap_u4(u4 x);
35 extern "C" u8 _raw_swap_u8(u4 x, u4 y);
44 inline u4 Bytes::swap_u4(u4 x) {
52 return swap_u8_base(*(u4*)&x, *(((u4*)&x)+1));
59 inline u8 Bytes::swap_u8_base(u4 x, u4
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dbytes_linux_x86.inline.hpp49 inline u4 Bytes::swap_u4(u4 x) {
53 u4 ret;
81 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
86 return swap_u8_base(*(u4*)&x, *(((u4*)&x)+1));
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dbytes_x86.hpp34 static inline u8 swap_u8_base(u4 x, u4 y); // compiler-dependent implementation
47 static inline u4 get_native_u4(address p) { return *(u4*)p; }
51 static inline void put_native_u4(address p, u4 x) { *(u4*)p = x; }
59 static inline u4 get_Java_u4(address p) { return swap_u4(get_native_u4(p)); }
63 static inline void put_Java_u4(address p, u4 x) { put_native_u4(p, swap_u4(x)); }
69 static inline u4 swap_u4(u4
[all...]
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dbytes_windows_x86.inline.hpp46 inline u4 Bytes::swap_u4(u4 x) {
49 return ( (u4(p[0]) << 24) | (u4(p[1]) << 16) | (u4(p[2]) << 8) | u4(p[3])) ;
69 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
81 return swap_u8_base(*(u4*)&x, *(((u4*)
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dbytes_zero.hpp32 u4 u;
56 static inline u4 get_native_u4(address p) {
71 static inline void put_native_u4(address p, u4 x) {
89 static inline u4 get_Java_u4(address p) {
90 return (u4(p[0]) << 24) |
91 (u4(p[1]) << 16) |
92 (u4(p[2]) << 8) |
93 (u4(p[3]) );
96 u4 hi, lo;
97 hi = (u4(
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dbytes_linux_zero.inline.hpp37 inline u4 Bytes::swap_u4(u4 x) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dbytes_sparc.hpp43 static inline u4 swap_u4(u4 x) { return x; }
53 static inline u4 get_native_u4(address p) {
55 case 0: return *(u4*)p;
57 case 2: return ( u4( ((u2*)p)[0] ) << 16 )
58 | ( u4( ((u2*)p)[1] ) );
60 default: return ( u4(p[0]) << 24 )
61 | ( u4(p[1]) << 16 )
62 | ( u4(p[2]) << 8 )
63 | u4(
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbytes_bsd_x86.inline.hpp75 inline u4 Bytes::swap_u4(u4 x) {
79 u4 ret;
107 inline u8 Bytes::swap_u8_base(u4 x, u4 y) {
112 return swap_u8_base(*(u4*)&x, *(((u4*)&x)+1));
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzcrc32.c63 typedef unsigned int u4; typedef
66 typedef unsigned long u4; typedef
69 typedef unsigned short u4; typedef
257 u4 endian;
291 register u4 c;
292 register const u4 FAR *buf4;
294 c = (u4)crc;
301 buf4 = (const u4 FAR *)(const void FAR *)buf;
331 register u4 c;
332 register const u4 FA
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileStream.hpp98 // Read u4 from stream
99 u4 get_u4(TRAPS);
100 u4 get_u4_fast() {
101 u4 res = Bytes::get_Java_u4(_current);
H A DclassFileParser.hpp190 u2* parse_exception_table(u4 code_length, u4 exception_table_length,
193 u4 code_attribute_length, u4 code_length,
195 u2* parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length,
198 u2* parse_checked_exceptions(u2* checked_exceptions_length, u4 method_attribute_length,
200 void parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_inde
[all...]
H A DclassFileStream.cpp61 u4 ClassFileStream::get_u4(TRAPS) {
H A Dverifier.hpp260 char* generate_code_data(methodHandle m, u4 code_length, TRAPS);
261 void verify_exception_handler_table(u4 code_length, char* code_data,
263 void verify_local_variable_table(u4 code_length, char* code_data, TRAPS);
292 RawBytecodeStream* bcs, u4 code_length, char* code_data,
301 StackMapFrame* current_frame, u4 code_length, bool* this_uninit,
305 RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
H A DclassFileParser.cpp199 u4 bytes = cfs->get_u4_fast();
206 u4 bytes = cfs->get_u4_fast();
924 u4 attribute_length = cfs->get_u4_fast();
1297 u2* ClassFileParser::parse_exception_table(u4 code_length,
1298 u4 exception_table_length,
1332 u4 code_attribute_length, u4 code_length,
1469 u2* ClassFileParser::parse_localvariable_table(u4 code_length,
1471 u4 code_attribute_length,
1497 // Assign to a u4 t
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldInfo.hpp79 u4 offset) {
88 u4 offset() const { return build_int_from_shorts(_shorts[low_offset], _shorts[high_offset]); }
107 void set_offset(u4 val) {
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dbytes_bsd_zero.inline.hpp59 inline u4 Bytes::swap_u4(u4 x) {
/openjdk7/hotspot/src/share/vm/services/
H A DheapDumper.cpp55 * u4 size of identifiers. Identifiers are used to represent
59 * u4 high word
60 * u4 low word number of milliseconds since 0:00 GMT, 1/1/70
67 * u4 number of *microseconds* since the time stamp in the
69 * u4 number of bytes *remaining* in the record. Note that
85 * u4 class serial number (> 0)
87 * u4 stack trace serial number
92 * u4 class serial_number
100 * u4 class serial number
108 * u4 stac
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassReader.java333 int magic = u4();
479 int size = u4();
743 return (int) u4();
752 return u4();
762 int length = u4();
845 int frame_count = (uoffsetIsU4 ? u4() : u2());
847 int bci = (uoffsetIsU4 ? u4() : u2());
860 typeSize = (ulocalvarIsU4 ? u4() : u2());
862 typeSize = (ustackIsU4 ? u4() : u2());
875 type.setAttr("bci", "" + (uoffsetIsU4 ? u4()
984 private int u4() throws IOException { method in class:ClassReader
[all...]
H A DClassWriter.java277 u4((int) cfile.getAttrLong("magic"));
372 u4(attrBuf.size());
613 u4(x);
639 u4(length);
665 u4(attrs.size());
672 u4(bci);
686 u4(typeSize);
692 u4(typeSize);
711 u4(offset);
761 u4(Intege
804 public void u4(int x) throws IOException { method in class:ClassWriter
[all...]
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceStream.hpp55 void print_val(const char* label, u4 val) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp299 typedef juint u4; typedef
1084 inline u4 build_u4_from( u1 c1, u1 c2, u1 c3, u1 c4 ) {
1085 return (( u4(c1) << 24 ) & 0xff000000)
1086 | (( u4(c2) << 16 ) & 0x00ff0000)
1087 | (( u4(c3) << 8 ) & 0x0000ff00)
1088 | (( u4(c4) << 0 ) & 0x000000ff);
1092 inline u4 build_u4_from( u1* p ) {
1109 u4 u = build_u4_from( c1, c2, c3, c4 );
1114 u4 u = build_u4_from( p );
1160 inline void explode_int_to( u4
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.hpp133 void write_u4(u4 x);
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DProxyTypeMapping.java169 MemoryUsage u4 = nonHeapPool.getUsage();
173 u4.getCommitted() <= 0) {
H A DValidateOpenTypes.java185 Object u4 = server.getAttribute(nonHeapPool, "Usage");
189 getCommitted(u4) <= 0) {
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_lgamma_r.c140 u4 = 2.28963728064692451092e-01, /* 0x3FCD4EAE, 0xF6010924 */ variable
283 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5)))));

Completed in 100 milliseconds

12