Searched refs:total_count (Results 1 - 13 of 13) sorted by relevance

/openjdk9/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.cpp94 static int total_count(GrowableArray<HistoEntry*>* profile) { function
122 int tot = total_count(profile);
164 int tot = total_count(profile);
/openjdk9/hotspot/src/share/vm/memory/
H A DfreeBlockDictionary.hpp89 virtual size_t total_count() = 0;
H A DbinaryTreeDictionary.hpp336 size_t total_count() PRODUCT_RETURN0;
H A DbinaryTreeDictionary.cpp1110 size_t BinaryTreeDictionary<Chunk_t, FreeList_t>::total_count() { function in class:BinaryTreeDictionary
H A Dmetaspace.cpp1915 list_count = humongous_dictionary()->total_count();
2355 log.trace("updated dictionary count " SIZE_FORMAT " %s", chunk_manager()->humongous_dictionary()->total_count(), chunk_size_name(HumongousIndex));
/openjdk9/hotspot/src/share/vm/gc/shared/
H A DreferenceProcessor.hpp172 size_t total_count(DiscoveredList lists[]);
345 void log_reflist_counts(DiscoveredList ref_lists[], uint active_length, size_t total_count) PRODUCT_RETURN;
H A DreferenceProcessor.cpp182 size_t ReferenceProcessor::total_count(DiscoveredList lists[]) { function in class:ReferenceProcessor
212 total_count(_discoveredSoftRefs),
213 total_count(_discoveredWeakRefs),
214 total_count(_discoveredFinalRefs),
215 total_count(_discoveredPhantomRefs));
/openjdk9/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp627 int total_count = 0; local
644 total_count++;
651 tty->print_cr(" Total number of symbols %7d", total_count);
665 tty->print_cr(" Average symbol length %7.2f", ((float) total_length / (float) total_count));
H A DjavaClasses.cpp1948 int total_count = 0; local
1956 for (frame fr = thread->last_frame(); max_depth != total_count;) {
2037 total_count++;
2040 log_info(stacktrace)("%s, %d", throwable->klass()->external_name(), total_count);
2044 set_depth(throwable(), total_count); local
/openjdk9/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp443 int total_count = 0; local
456 prefix_array->at_put_grow(total_count++, prefix_copy);
460 char** all_prefixes = NEW_RESOURCE_ARRAY(char*, total_count);
462 for (int i = 0; i < total_count; ++i) {
465 *count_ptr = total_count;
H A Dwhitebox.cpp451 size_t total_count() { return _total_count; } function in class:OldRegionsLivenessClosure
489 result->long_at_put(0, rli.total_count());
/openjdk9/hotspot/src/share/vm/opto/
H A Dparse1.cpp467 uint total_count = C->trap_count(reason); local
468 uint old_count = total_count;
469 total_count += md_count;
471 if (total_count < old_count || total_count < md_count)
472 total_count = (uint)-1;
473 C->set_trap_count(reason, total_count);
477 md_count, total_count);
/openjdk9/hotspot/src/share/vm/gc/cms/
H A DcompactibleFreeListSpace.cpp317 num += dictionary()->total_count();

Completed in 284 milliseconds