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

/openjdk7/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.hpp138 int new_count = c >> 1; local
140 if (c > 0 && new_count == 0) new_count = 1;
141 set(state(), new_count); local
/openjdk7/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);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.cpp95 jlong new_count = os::elapsed_counter(); local
96 return TimeHelper::counter_to_seconds(new_count - _counter);
102 jlong new_count = os::elapsed_counter(); local
103 jlong count = new_count - _counter;
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.cpp1352 int new_count = 0;
1358 new_traces[new_count++] = tr;
1367 qsort(new_traces + 1, new_count - 1, sizeof(new_traces[0]), trace_frequency_order);
1372 for (int i = 0; i < new_count; i++) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp3339 int new_count = java_lang_Class::classRedefinedCount(class_mirror) + 1; local
3340 java_lang_Class::set_classRedefinedCount(class_mirror, new_count);
3345 ("updated count in subclass=%s to %d", ik->external_name(), new_count));

Completed in 97 milliseconds