Searched refs:total_size (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcopyFailedInfo.hpp61 size_t total_size() const { return _total_size; } function in class:CopyFailedInfo
H A DgcTraceSend.cpp103 failed_info.set_totalSize(cf_info.total_size());
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp241 size_t total_size() const { return _total_size; } function in class:BinaryTreeDictionary
276 assert(total_size_in_tree(root()) == total_size(),
280 return total_size();
H A DbinaryTreeDictionary.cpp332 assert(total_size() == root()->size(), "reset check failed");
635 assert(total_size() >= retTC->size(), "Incorrect total size");
764 assert(!FLSVerifyDictionary || total_size_in_tree(root()) == total_size(), "_total_size inconsistency");
1177 size_t total_size = total_chunk_size(debug_only(NULL)); local
1179 gclog_or_tty->print("Total Free Space: %d\n", total_size);
1183 gclog_or_tty->print("Av. Block Size: %d\n", total_size/free_blocks);
1287 total_size() != 0, "_total_size should't be 0?");
1338 guarantee(total_size() == total_size_in_tree(root()), "Total Size inconsistency");
H A Duniverse.cpp836 const size_t total_size = heap_size + HeapBaseMinAddress; local
840 } else if (total_size <= OopEncodingHeapMax && (mode != HeapBasedNarrowOop)) {
841 if (total_size <= NarrowOopHeapMax && (mode == UnscaledNarrowOop) &&
850 mode == ZeroBasedNarrowOop && total_size <= NarrowOopHeapMax) {
853 // total_size > 4Gb or failed to reserve below 4Gb.
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp53 int total_size; member in class:CodeBlob_sizes
65 total_size = 0;
75 int total() { return total_size; }
83 header_size * 100 / total_size,
84 relocation_size * 100 / total_size,
85 code_size * 100 / total_size,
86 stub_size * 100 / total_size,
87 scopes_oop_size * 100 / total_size,
88 scopes_data_size * 100 / total_size,
89 scopes_pcs_size * 100 / total_size);
[all...]
H A DrelocInfo.cpp232 int total_size = relocation_end - relocation_begin; local
235 Copy::fill_to_bytes(relocation_begin + locs_size, total_size-locs_size, 0);
238 int index_size = total_size - locs_size - BytesPerInt; // find out how much space is left
240 assert(total_size == locs_size + index_size + BytesPerInt, "checkin'");
H A Dnmethod.cpp125 int total_size; member in struct:nmethod_stats_struct
139 total_size += nm->size();
154 if (total_size != 0) tty->print_cr(" total in heap = %d", total_size);
440 int nmethod::total_size() const { function in class:nmethod
H A Dnmethod.hpp378 int total_size () const;
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.cpp95 int total_size = _data_size + _extra_data_size; local
96 _data = (intptr_t *) arena->Amalloc(total_size);
97 Copy::disjoint_words((HeapWord*) mdo->data_base(), (HeapWord*) _data, total_size / HeapWordSize);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngmem.c216 png_uint_32 total_size; local
248 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
250 table = farmalloc(total_size);
/openjdk7/jdk/src/share/classes/javax/management/
H A DObjectName.java1643 final int total_size = _canonicalName.length() - _domain_length - 1
1646 final char[] dest_chars = new char[total_size];
1665 final int total_size = _canonicalName.length();
1666 final char[] dest_chars = new char[total_size];
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp1816 event.set_codeSize((task->code() == NULL) ? 0 : task->code()->total_size());
1834 int code_size = (task->code() == NULL) ? 0 : task->code()->total_size();
2090 _sum_nmethod_size += code->total_size();
2095 _perf_sum_nmethod_size->inc( code->total_size());
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp247 static const uint total_size() { return N; } function in class:TaskQueueSuper
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp557 size_t total_size = totalSizeInIndexedFreeLists() + local
559 gclog_or_tty->print(" free=%ld frag=%1.4f\n", total_size, flsFrag());
567 size_t total_size = totalSizeInIndexedFreeLists(); local
569 gclog_or_tty->print("Total Free Space: %d\n", total_size);
573 gclog_or_tty->print("Av. Block Size: %d\n", total_size/free_blocks);

Completed in 91 milliseconds