Searched refs:new_count (Results 1 - 7 of 7) sorted by relevance

/openjdk10/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.cpp50 int new_count = MIN2(old_count, (int) (CompileThreshold / 2)); local
52 if (new_count == 0) new_count = 1;
53 if (old_count != new_count) set(state(), new_count); local
H A DinvocationCounter.hpp150 int new_count = c >> 1; local
152 if (c > 0 && new_count == 0) new_count = 1;
153 set(state(), new_count); local
/openjdk10/hotspot/src/share/vm/runtime/
H A Dtimer.cpp102 jlong new_count = os::elapsed_counter(); local
103 return TimeHelper::counter_to_seconds(new_count - _counter);
108 jlong new_count = os::elapsed_counter(); local
109 return (jlong)TimeHelper::counter_to_millis(new_count - _counter);
H A Darguments.cpp967 int new_count = *count + 1; local
971 *bldarray = NEW_C_HEAP_ARRAY(char*, new_count, mtArguments);
973 *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, new_count, mtArguments);
976 *count = new_count;
/openjdk10/hotspot/src/share/vm/utilities/
H A DintHisto.cpp36 int new_count = _elements->at_grow(outcome) + 1; local
37 _elements->at_put(outcome, new_count);
/openjdk10/hotspot/src/share/vm/opto/
H A Dblock.cpp1617 int new_count = 0;
1623 new_traces[new_count++] = tr;
1632 qsort(new_traces + 1, new_count - 1, sizeof(new_traces[0]), trace_frequency_order);
1636 for (int i = 0; i < new_count; i++) {
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp4082 int new_count = java_lang_Class::classRedefinedCount(class_mirror) + 1; local
4083 java_lang_Class::set_classRedefinedCount(class_mirror, new_count);
4087 log_debug(redefine, class, subclass)("updated count in subclass=%s to %d", ik->external_name(), new_count);

Completed in 82 milliseconds