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

/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp60 idx_t old_size_in_words = size_in_words();
64 idx_t new_size_in_words = size_in_words();
76 clear_range_of_words(old_size_in_words, size_in_words());
281 idx_t size = size_in_words();
282 for (idx_t index = 0; index < size_in_words(); index++) {
295 idx_t size = size_in_words();
296 for (idx_t index = 0; index < size_in_words(); index++) {
307 idx_t size = size_in_words();
308 for (idx_t index = 0; index < size_in_words(); index++) {
318 idx_t size = size_in_words();
[all...]
H A DbitMap.inline.hpp144 clear_range_of_words(0, size_in_words());
334 return bit_rounded_up > bit ? word_index(bit_rounded_up) : size_in_words();
H A DbitMap.hpp142 idx_t size_in_words() const { function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayOop.hpp168 julong size_in_words = ((size_in_bytes + (HeapWordSize-1)) >> LogHeapWordSize); local
169 assert(size_in_words <= (julong)max_jint, "no overflow");
171 return align_object_size((intptr_t)size_in_words);
H A DinstanceKlass.hpp129 static const int size_in_words() { function in class:VALUE_OBJ_CLASS_SPEC
564 return oop_map_count * OopMapBlock::size_in_words();
567 return _nonstatic_oop_map_size / OopMapBlock::size_in_words();
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp890 int size_in_words = size >> LogBytesPerWord; local
891 assert(size_in_words * wordSize == size, "unaligned");
892 assert(size_in_words >= header_words, "too small");
893 stack->overflow_check(size_in_words, CHECK_NULL);
907 stack->alloc((size_in_words - header_words) * wordSize);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionRemSet.cpp168 return sizeof(this) + _bm.size_in_words() * HeapWordSize;
715 sum += (_coarse_map.size_in_words() * HeapWordSize);

Completed in 48 milliseconds