Searched refs:u2 (Results 1 - 25 of 101) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.cpp30 const u2 constMethodOopDesc::MAX_IDNUM = 0xFFFE;
31 const u2 constMethodOopDesc::UNSET_IDNUM = 0xFFFF;
45 extra_bytes += sizeof(u2);
49 extra_bytes += sizeof(u2);
54 extra_bytes += sizeof(u2);
75 u2* constMethodOopDesc::checked_exceptions_length_addr() const {
81 u2* constMethodOopDesc::exception_table_length_addr() const {
85 return (u2*) checked_exceptions_start() - 1;
92 u2* constMethodOopDesc::localvariable_table_length_addr() const {
96 return (u2*) exception_table_star
[all...]
H A DfieldInfo.hpp57 u2 _shorts[field_slots];
59 void set_name_index(u2 val) { _shorts[name_index_offset] = val; }
60 void set_signature_index(u2 val) { _shorts[signature_index_offset] = val; }
61 void set_initval_index(u2 val) { _shorts[initval_index_offset] = val; }
63 u2 name_index() const { return _shorts[name_index_offset]; }
64 u2 signature_index() const { return _shorts[signature_index_offset]; }
65 u2 initval_index() const { return _shorts[initval_index_offset]; }
71 static FieldInfo* from_field_array(u2* fields, int index) {
75 void initialize(u2 access_flags,
76 u2 name_inde
[all...]
H A DconstMethodOop.hpp63 // | (length is u2, elements are 6-tuples of u2) |
69 // | (length is u2, elements are 4-tuples of u2) |
75 // | (length is u2, elements are u2) |
85 u2 class_cp_index;
92 u2 start_bci;
93 u2 length;
94 u2 name_cp_inde
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dbytes_solaris_x86.inline.hpp30 extern "C" u2 _raw_swap_u2(u2 x);
40 inline u2 Bytes::swap_u2(u2 x) {
69 inline u2 _raw_swap_u2(u2 x) {
85 inline u2 _raw_swap_u2(u2 x) {
86 u2 ret;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dbytes_sparc.hpp42 static inline u2 swap_u2(u2 x) { return x; }
46 static inline u2 get_native_u2(address p){
48 ? *(u2*)p
49 : ( u2(p[0]) << 8 )
50 | ( u2(p[1]) );
57 case 2: return ( u4( ((u2*)p)[0] ) << 16 )
58 | ( u4( ((u2*)p)[1] ) );
74 case 2: return ( u8( ((u2*)p)[0] ) << 48 )
75 | ( u8( ((u2*)
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dbytes_x86.hpp46 static inline u2 get_native_u2(address p) { return *(u2*)p; }
50 static inline void put_native_u2(address p, u2 x) { *(u2*)p = x; }
58 static inline u2 get_Java_u2(address p) { return swap_u2(get_native_u2(p)); }
62 static inline void put_Java_u2(address p, u2 x) { put_native_u2(p, swap_u2(x)); }
68 static inline u2 swap_u2(u2 x); // compiler-dependent implementation
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dbytes_linux_zero.inline.hpp33 inline u2 Bytes::swap_u2(u2 x) {
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.hpp107 u2 _index; // local, stack, or constant pool index
112 Origin origin, u2 index, StackMapFrame* frame, VerificationType type)
119 static TypeOrigin local(u2 index, StackMapFrame* frame);
120 static TypeOrigin stack(u2 index, StackMapFrame* frame);
121 static TypeOrigin sm_local(u2 index, StackMapFrame* frame);
122 static TypeOrigin sm_stack(u2 index, StackMapFrame* frame);
123 static TypeOrigin cp(u2 index, VerificationType vt);
125 static TypeOrigin bad_index(u2 index);
134 u2 index() const { return _index; }
174 static ErrorContext bad_code(u2 bc
[all...]
H A DclassFileStream.hpp90 // Read u2 from stream
91 u2 get_u2(TRAPS);
92 u2 get_u2_fast() {
93 u2 res = Bytes::get_Java_u2(_current);
121 u2* get_u2_buffer() {
122 return (u2*) _current;
125 // Skip length u1 or u2 elements from stream
H A DstackMapTable.hpp56 // should be a u2, but if we defined the variable as that type it will
65 u2 max_locals, u2 max_stack,
114 u2 get_u2(TRAPS) {
118 u2 res = Bytes::get_Java_u2((u1*)_data->byte_at_addr(_index));
178 u2 max_locals, u2 max_stack, TRAPS);
H A DclassFileParser.hpp47 u2 _major_version;
48 u2 _minor_version;
157 void parse_field_attributes(constantPoolHandle cp, u2 attributes_count,
158 bool is_static, u2 signature_index,
159 u2* constantvalue_index_addr,
161 u2* generic_signature_index_addr,
169 u2* java_fields_count_ptr, TRAPS);
190 u2* parse_exception_table(u4 code_length, u4 exception_table_length,
195 u2* parse_localvariable_table(u4 code_length, u2 max_local
[all...]
H A DclassFileParser.cpp116 u2 name_index = cfs->get_u2_fast();
123 u2 class_index = cfs->get_u2_fast();
124 u2 name_and_type_index = cfs->get_u2_fast();
131 u2 class_index = cfs->get_u2_fast();
132 u2 name_and_type_index = cfs->get_u2_fast();
139 u2 class_index = cfs->get_u2_fast();
140 u2 name_and_type_index = cfs->get_u2_fast();
147 u2 string_index = cfs->get_u2_fast();
166 u2 method_index = cfs->get_u2_fast();
170 u2 signature_inde
[all...]
H A DstackMapFrame.hpp48 // fields are int32_t instead of u2.
96 StackMapFrame(u2 max_locals, u2 max_stack, ClassVerifier* verifier);
102 u2 locals_size,
103 u2 stack_size,
104 u2 max_locals,
105 u2 max_stack,
124 inline void set_locals_size(u2 locals_size) { _locals_size = locals_size; }
125 inline void set_stack_size(u2 stack_size) { _stack_size = _stack_mark = stack_size; }
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dbytes_zero.hpp33 u2 us;
51 static inline u2 get_native_u2(address p){
66 static inline void put_native_u2(address p, u2 x) {
85 static inline u2 get_Java_u2(address p) {
86 return (u2(p[0]) << 8) |
87 (u2(p[1]) );
108 static inline void put_Java_u2(address p, u2 x) {
133 static inline u2 swap_u2(u2 x);
138 static inline u2 get_Java_u
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dbytes_linux_x86.inline.hpp32 inline u2 Bytes::swap_u2(u2 x) {
36 u2 ret;
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DHandler.java47 protected boolean equals(URL u1, URL u2) { argument
49 String userInfo2 = u2.getUserInfo();
50 return super.equals(u1, u2) &&
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.hpp44 u2 symbol_to_cpool_index(Symbol* sym) {
48 u2 class_symbol_to_cpool_index(Symbol* sym) {
120 u2 line_number_table_entries(methodHandle method);
121 void write_line_number_table_attribute(methodHandle method, u2 num_entries);
122 void write_local_variable_table_attribute(methodHandle method, u2 num_entries);
124 u2 inner_classes_attribute_length();
126 void write_signature_attribute(u2 generic_signaure_index);
132 void write_u2(u2 x);
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dbytes_windows_x86.inline.hpp32 inline u2 Bytes::swap_u2(u2 x) {
35 return ( (u2(p[0]) << 8 ) | ( u2(p[1])) );
/openjdk7/jdk/test/java/net/URL/
H A DParseAuthority.java46 URL u2 = new URL("http://[www.sun.com]:9999/path1/path2/");
H A DTestIPv6Addresses.java47 URL u2 = new URL("http", "[fe80::a00:20ff:feae:45c9]", 80, "/index.html");
48 if (!u1.equals(u2)) {
52 if (!u1.getHost().equals(u2.getHost()) ||
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.cpp136 register uint32 *u2 = s.data; // Pointer to the source data local
138 *u1++ &= *u2++; // Copy and AND longwords
156 register uint32 *u2 = s.data; // Pointer to the source data local
158 *u1++ |= *u2++;
162 memcpy(&data[cnt], u2, (s.size - cnt)*sizeof(uint32));
181 register uint32 *u2 = s.data; // Pointer to the source data local
183 *u1++ &= ~(*u2++); // A <-- A & ~B with longwords
203 register uint32 *u2 = s.data; // Pointer to the source data local
212 register uint32 B = *u2++; // Data from other guy
220 BnotA |= *u2
254 register uint32 *u2 = s.data; // Pointer to the source data local
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURLStreamHandler.java324 * @param u2 a URL object
330 protected boolean equals(URL u1, URL u2) { argument
332 String ref2 = u2.getRef();
334 sameFile(u1, u2);
389 * @param u2 a URL object
390 * @return true if u1 and u2 refer to the same file
393 protected boolean sameFile(URL u1, URL u2) { argument
395 if (!((u1.getProtocol() == u2.getProtocol()) ||
397 u1.getProtocol().equalsIgnoreCase(u2.getProtocol()))))
401 if (!(u1.getFile() == u2
455 hostsEqual(URL u1, URL u2) argument
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbytes_bsd_x86.inline.hpp58 inline u2 Bytes::swap_u2(u2 x) {
62 u2 ret;
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dbytes_bsd_zero.inline.hpp55 inline u2 Bytes::swap_u2(u2 x) {
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DGetResource.java73 URL u2 = Thread.currentThread().getContextClassLoader().getResource("sun/util/resources/CalendarData.class");
74 if (u2 == null) {

Completed in 79 milliseconds

12345