Searched refs:nm (Results 151 - 173 of 173) sorted by relevance

1234567

/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp451 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL; local
452 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp344 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL; local
345 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp464 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL; local
465 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.cpp489 nmethod* nm = cb->is_nmethod() ? (nmethod*)cb : NULL; local
490 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java372 * @param nm the name of the style (must be unique within the
383 public Style addStyle(String nm, Style parent) { argument
385 return styles.addStyle(nm, parent);
391 * @param nm the name of the style to remove
393 public void removeStyle(String nm) { argument
395 styles.removeStyle(nm);
401 * @param nm the name of the style
404 public Style getStyle(String nm) { argument
406 return styles.getStyle(nm);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java836 String nm = (String) a.getAttribute(HTML.Attribute.NAME);
837 if ((nm != null) && nm.equals(reference)) {
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java1004 int nm = rem.value[j+1+rem.offset];
1008 qrem = nh + nm;
1011 long nChunk = (((long)nh) << 32) | (nm & LONG_MASK);
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.cpp234 void Dependencies::copy_to(nmethod* nm) { argument
235 address beg = nm->dependencies_begin();
236 address end = nm->dependencies_end();
H A Ddependencies.hpp368 void copy_to(nmethod* nm);
416 // for (Dependencies::DepStream deps(nm); deps.next(); ) {
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp581 nmethod* nm = code(); // Put it into local variable to guard against concurrent updates local
582 if (nm != NULL) {
583 nm->make_not_entrant();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DFrame.java204 public abstract Frame sender(RegisterMap map, CodeBlob nm); argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp80 nmethod* nm; /* osr nmethod */ member in struct:osr_result
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp491 nmethodLocker _nmlock(nm); \
H A DsharedRuntime.hpp178 static address compute_compiled_exc_handler(nmethod* nm, address ret_pc, Handle& exception,
H A Dthread.cpp2594 nmethod* nm = (nmethod*) fst.current()->cb();
2595 ScopeDesc* sd = nm->scope_desc_at( pc);
2635 nmethod* nm = CodeCache::find_nmethod(fst.current()->pc());
2636 nm->make_not_entrant();
2650 nmethod* nm = fst.current()->cb()->as_nmethod_or_null();
2652 this->name(), nm != NULL ? nm->compile_id() : -1);
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletPanel.java168 String nm = "applet-" + getCode();
184 handler = new Thread(appletGroup, this, "thread " + nm);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java354 * @param nm the name of the style to remove
356 public void removeStyle(String nm) { argument
357 Style aStyle = getStyle(nm);
360 String selector = cleanSelectorString(nm);
381 super.removeStyle(nm);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp2726 nmethod *nm = nmethod::new_native_nmethod(method, local
2737 nm->set_lazy_critical_native(true);
2739 return nm;
3268 nmethod *nm = nmethod::new_dtrace_nmethod( local
3271 return nm;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp2396 nmethod *nm = nmethod::new_native_nmethod(method, local
2407 nm->set_lazy_critical_native(true);
2410 return nm;
2780 nmethod *nm = nmethod::new_dtrace_nmethod( local
2783 return nm;
H A DsharedRuntime_x86_64.cpp2631 nmethod *nm = nmethod::new_native_nmethod(method, local
2642 nm->set_lazy_critical_native(true);
2645 return nm;
3264 nmethod *nm = nmethod::new_dtrace_nmethod( local
3267 return nm;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp5054 nmethod* nm = cb->as_nmethod_or_null(); local
5055 if (nm != NULL && !(nm->test_oops_do_mark())) {
5057 nm->oops_do(&predicate_cl);
5065 if (!nm->test_set_oops_do_mark()) {
5066 do_newly_marked_nmethod(nm);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java1484 NamespaceMappings nm = handler.getNamespaceMappings();
1485 namespace = nm.lookupNamespace(prefix);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageReader.java1179 int nm = class_method_count.getInt();
1180 for (int j = 0; j < nm; j++) {

Completed in 220 milliseconds

1234567