Lines Matching refs:_word_size

202     size_t size_in_bytes = _allocator._word_size * HeapWordSize;  in notify_allocation_jvmti_sampler()
225 size_t size_in_bytes = _allocator._word_size * HeapWordSize; in notify_allocation_jfr_sampler()
240 size_t word_size = _allocator._word_size; in notify_allocation_dtrace_sampler()
256 HeapWord* mem = Universe::heap()->mem_allocate(_word_size, &allocation._overhead_limit_exceeded); in allocate_outside_tlab()
261 NOT_PRODUCT(Universe::heap()->check_for_non_bad_heap_word_value(mem, _word_size)); in allocate_outside_tlab()
262 size_t size_in_bytes = _word_size * HeapWordSize; in allocate_outside_tlab()
272 HeapWord* mem = _thread->tlab().allocate(_word_size); in allocate_inside_tlab()
287 mem = tlab.allocate(_word_size); in allocate_inside_tlab_slow()
301 tlab.record_slow_allocation(_word_size); in allocate_inside_tlab_slow()
307 size_t new_tlab_size = tlab.compute_size(_word_size); in allocate_inside_tlab_slow()
317 size_t min_tlab_size = ThreadLocalAllocBuffer::compute_min_size(_word_size); in allocate_inside_tlab_slow()
344 tlab.fill(mem, mem + _word_size, allocation._allocated_tlab_size); in allocate_inside_tlab_slow()
378 assert(_word_size >= hs, "unexpected object size"); in mem_clear()
380 Copy::fill_to_aligned_words(mem + hs, _word_size - hs); in mem_clear()
409 return MemRegion(((HeapWord*)obj) + hs, _word_size - hs); in obj_memory_range()
428 assert(_word_size > 0, "oop_size must be positive."); in initialize()
430 java_lang_Class::set_oop_size(mem, (int)_word_size); in initialize()