Searched refs:u2 (Results 26 - 50 of 101) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp120 u2 _method_size; // size of this object
121 u2 _max_stack; // Maximum number of entries on the expression stack
122 u2 _max_locals; // Number of local variables used by this method
123 u2 _size_of_parameters; // size of the parameter block (receiver + arguments) in words
130 u2 _interpreter_throwout_count; // Count of times method was exited via exception while interpreting
131 u2 _number_of_breakpoints; // fullspeed debugging support
224 u2 number_of_breakpoints() const { return _number_of_breakpoints; }
232 u2 method_idnum() const { return constMethod()->method_idnum(); }
233 void set_method_idnum(u2 idnum) { constMethod()->set_method_idnum(idnum); }
823 u2 _name_inde
[all...]
H A DinstanceKlass.hpp250 u2 _static_oop_field_count;// number of static oop fields in this klass
251 u2 _java_fields_count; // The number of declared Java fields
261 u2 _misc_flags;
262 u2 _minor_version; // minor version number of class file
263 u2 _major_version; // major version number of class file
281 volatile u2 _idnum_allocated_count; // JNI/JVMTI: increments with the addition of methods, old ids don't change
333 void set_static_oop_field_count(u2 size) { _static_oop_field_count = size; }
377 void set_fields(typeArrayOop f, u2 java_fields_count) {
549 u2 minor_version() const { return _minor_version; }
550 void set_minor_version(u2 minor_versio
[all...]
H A DconstMethodKlass.cpp242 u2* addr = m->checked_exceptions_length_addr();
246 u2* addr = m->exception_table_length_addr();
250 u2* addr = m->localvariable_table_length_addr();
254 u2* uncompressed_table_start;
256 uncompressed_table_start = (u2*) m->localvariable_table_start();
258 uncompressed_table_start = (u2*) m->exception_table_start();
260 uncompressed_table_start = (u2*) m->checked_exceptions_start();
262 uncompressed_table_start = (u2*) m_end;
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DHandler.java61 protected boolean sameFile(URL u1, URL u2) { argument
62 if (!u1.getProtocol().equals("jar") || !u2.getProtocol().equals("jar"))
66 String file2 = u2.getFile();
71 return super.sameFile(u1, u2);
85 return super.sameFile(u1, u2);
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTableFormat.hpp39 // u2 cpool_index || u2 bci (for ITEM_Object & ITEM_Uninitailized only)
62 static verification_type_info* create_object_at(address addr, u2 cp_idx) {
69 static verification_type_info* create_uninit_at(address addr, u2 bci) {
78 return sizeof(u1) + sizeof(u2);
84 static size_t max_size() { return sizeof(u1) + sizeof(u2); }
92 u2 cpool_index() const {
96 void set_cpool_index(u2 idx) {
101 u2 bci() const {
106 void set_bci(u2 bc
[all...]
H A DstackMapTable.cpp34 u2 max_locals, u2 max_stack,
182 u2 class_index = _stream->get_u2(THREAD);
199 u2 offset = _stream->get_u2(THREAD);
214 StackMapFrame* pre_frame, bool first, u2 max_locals, u2 max_stack, TRAPS) {
255 u2 stack_size = 1;
272 u2 offset_delta = _stream->get_u2(THREAD);
295 u2 stack_size = 1;
386 u2 locals_siz
[all...]
H A DclassFileStream.cpp50 u2 ClassFileStream::get_u2(TRAPS) {
H A Dverifier.cpp278 TypeOrigin TypeOrigin::local(u2 index, StackMapFrame* frame) {
283 TypeOrigin TypeOrigin::stack(u2 index, StackMapFrame* frame) {
288 TypeOrigin TypeOrigin::sm_local(u2 index, StackMapFrame* frame) {
293 TypeOrigin TypeOrigin::sm_stack(u2 index, StackMapFrame* frame) {
298 TypeOrigin TypeOrigin::bad_index(u2 index) {
301 TypeOrigin TypeOrigin::cp(u2 index, VerificationType vt) {
506 for (u2 i = 0; i < sm_table->number_of_entries(); ++i) {
638 u2 bci = bcs.bci();
656 u2 index;
1623 u2 di
[all...]
H A DverificationType.hpp112 BciForThis = ((u2)-1), // A bci of -1 is an Unintialized-This
166 static VerificationType uninitialized_type(u2 bci)
240 u2 bci() const {
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassReader.java338 int minver = u2();
339 int majver = u2();
366 int flags = u2();
381 for (int len = u2(), i = 0; i < len; i++) {
403 int len = u2();
407 int flags = u2();
463 for (int len = u2(), i = 0; i < len; i++) {
464 int ref = u2();
741 return (short) u2();
750 return u2();
988 private int u2() throws IOException { method in class:ClassReader
[all...]
H A DClassWriter.java278 u2((int) cfile.getAttrLong("minver"));
279 u2((int) cfile.getAttrLong("majver"));
290 u2(flags);
294 u2(interfaces.size());
300 u2(members.size());
310 u2(parseFlags(member.getAttr("flags")));
322 u2(attrNames.size());
610 u2(x);
636 u2(stack);
637 u2(loca
809 public void u2(int x) throws IOException { method in class:ClassWriter
[all...]
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/file/
H A DHandler.java136 * @param u2 the URL of the second host to compare
140 protected boolean hostsEqual(URL u1, URL u2) { argument
147 String s2 = u2.getHost();
152 return super.hostsEqual(u1, u2);
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/file/
H A DHandler.java118 * @param u2 the URL of the second host to compare
122 protected boolean hostsEqual(URL u1, URL u2) { argument
129 String s2 = u2.getHost();
134 return super.hostsEqual(u1, u2);
/openjdk7/jdk/test/java/nio/file/attribute/FileTime/
H A DBasic.java125 static void cmp(long v1, TimeUnit u1, long v2, TimeUnit u2, int expected) { argument
126 int result = FileTime.from(v1, u1).compareTo(FileTime.from(v2, u2));
131 static void eq(long v1, TimeUnit u1, long v2, TimeUnit u2) { argument
133 FileTime t2 = FileTime.from(v2, u2);
140 static void neq(long v1, TimeUnit u1, long v2, TimeUnit u2) { argument
142 FileTime t2 = FileTime.from(v2, u2);
/openjdk7/jdk/test/java/util/UUID/
H A DUUIDTest.java95 UUID u2 = UUID.fromString(u1.toString());
96 if (!u1.equals(u2))
222 UUID u2 = UUID.fromString(u1.toString());
223 if (u1.hashCode() != u2.hashCode())
233 UUID u2 = new UUID(l, l2);
234 if (u1.equals(u2))
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DHostIdentifier.java139 URI u2 = null;
152 u2 = new URI(scheme + "://" + ssp);
154 u2 = new URI(scheme + "://" + ssp + "#" + frag);
156 return u2;
164 u2 = new URI("//" + uriString);
165 return u2;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.cpp52 // JVMSpec| u2 fields_count;
75 // JVMSpec| u2 access_flags;
76 // JVMSpec| u2 name_index;
77 // JVMSpec| u2 descriptor_index;
78 // JVMSpec| u2 attributes_count;
120 // JVMSpec| u2 attribute_name_index;
122 // JVMSpec| u2 max_stack;
123 // JVMSpec| u2 max_locals;
126 // JVMSpec| u2 exception_table_length;
127 // JVMSpec| { u2 start_p
[all...]
H A DjvmtiRedefineClasses.cpp683 u2 new_num = k_new_method->method_idnum();
684 u2 old_num = k_old_method->method_idnum();
713 u2 num = the_class->next_method_idnum();
718 u2 new_num = k_new_method->method_idnum();
1601 // u2 num_annotations;
1615 u2 num_annotations = Bytes::get_Java_u2((address)
1643 // u2 type_index;
1644 // u2 num_element_value_pairs;
1646 // u2 element_name_index;
1660 u2 type_inde
[all...]
H A DjvmtiRedefineClasses.hpp449 u2 rewrite_cp_ref_in_annotation_data(
474 address& stackmap_addr_ref, address stackmap_end, u2 frame_i,
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclImpl.java375 Enumeration<AclEntry> u1, u2, g1, g2; field in class:AclEnumerator
378 Hashtable<?,AclEntry> u2, Hashtable<?,AclEntry> g2) {
381 this.u2 = u2.elements();
388 u2.hasMoreElements() ||
399 if (u2.hasMoreElements())
400 return u2.nextElement();
377 AclEnumerator(Acl acl, Hashtable<?,AclEntry> u1, Hashtable<?,AclEntry> g1, Hashtable<?,AclEntry> u2, Hashtable<?,AclEntry> g2) argument
/openjdk7/jdk/test/java/net/URLClassLoader/closetest/
H A DCloseTest.java123 URL u2 = loader.findResource ("com/foo/Resource2");
124 if (u2 != null) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.hpp86 void get_cache_and_index_at_bcp(Register cache, Register index, int bcp_offset, size_t index_size = sizeof(u2));
87 void get_cache_and_index_and_bytecode_at_bcp(Register cache, Register index, Register bytecode, int byte_no, int bcp_offset, size_t index_size = sizeof(u2));
88 void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size = sizeof(u2));
89 void get_cache_index_at_bcp(Register index, int bcp_offset, size_t index_size = sizeof(u2));
H A Dinterp_masm_x86_64.hpp108 void get_cache_and_index_at_bcp(Register cache, Register index, int bcp_offset, size_t index_size = sizeof(u2));
109 void get_cache_and_index_and_bytecode_at_bcp(Register cache, Register index, Register bytecode, int byte_no, int bcp_offset, size_t index_size = sizeof(u2));
110 void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size = sizeof(u2));
111 void get_cache_index_at_bcp(Register index, int bcp_offset, size_t index_size = sizeof(u2));
/openjdk7/make/scripts/
H A Dwebrev.ksh696 print -u2 "\nWARNING: relative_dir: \"$1\" not relative "
697 print -u2 "to \"$2\". Check input paths. Framed webrev "
698 print -u2 "will not be relocatable!"
1379 print -u2 "parent $codemgr_parent doesn't look like a" \
2023 print -u2 "Error: No perl interpreter found. Exiting."
2032 # [[ ! -x $CODEREVIEW ]] && print -u2 "WARNING: codereview(1) not found."
2033 # [[ ! -x $PS2PDF ]] && print -u2 "WARNING: ps2pdf(1) not found."
2034 # [[ ! -x $WDIFF ]] && print -u2 "WARNING: wdiff not found."
2135 print -u2 "$1: no such file or not readable"
2156 print -u2 "Unabl
[all...]
/openjdk7/hotspot/src/share/vm/trace/
H A DtraceStream.hpp47 void print_val(const char* label, u2 val) {

Completed in 63 milliseconds

12345