Searched refs:_total_size (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcopyFailedInfo.hpp34 size_t _total_size; member in class:CopyFailedInfo
38 CopyFailedInfo() : _first_size(0), _smallest_size(0), _total_size(0), _count(0) {}
47 _total_size += size;
54 _total_size = 0;
61 size_t total_size() const { return _total_size; }
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DvmStructs_cms.hpp49 nonstatic_field(BinaryTreeDictionary<FreeChunk>,_total_size, size_t) \
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp167 size_t _total_size; member in class:BinaryTreeDictionary
175 void set_total_size(size_t v) { _total_size = v; }
241 size_t total_size() const { return _total_size; }
277 "_total_size inconsistency");
H A DbinaryTreeDictionary.cpp317 _total_size(0), _total_free_blocks(0), _root(0) {}
338 _total_size = _total_size + inc;
343 _total_size = _total_size - dec;
764 assert(!FLSVerifyDictionary || total_size_in_tree(root()) == total_size(), "_total_size inconsistency");
1287 total_size() != 0, "_total_size should't be 0?");
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp329 NOT_PRODUCT(static long _total_size;) // Total no. of bytes used for itables
331 static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; })
H A DklassVtable.cpp1346 long klassItable::_total_size; // Total no. of bytes used for itables member in class:klassItable
1351 tty->print_cr("%6d K uses for itables (average by class: %d bytes)", _total_size / K, _total_size / _total_classes);
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp72 // + _total_size -> | |
102 initialize(_total_start, _total_size);
198 _total_size = end - start;
436 assert(dest->_total_size >= total_content_size(), "must be big enough");
637 address dest_end = dest->_total_start + dest->_total_size;
776 CodeBuffer* bxp = new CodeBuffer(_total_start, _total_size);
809 debug_only(Copy::fill_to_bytes(bxp->_total_start, bxp->_total_size,
847 address tend = tstart + _total_size;
876 xtty->print_cr("<blob name='%s' size='%d'>", name, _total_size);
H A DcodeBuffer.hpp328 csize_t _total_size; // size in bytes of combined memory buffer member in class:CodeBuffer
354 _total_size = code_size;

Completed in 61 milliseconds