Lines Matching refs:_word_size

509   _smallLinearAllocBlock._word_size = 0;  in reset()
566 if (_smallLinearAllocBlock._word_size != 0) { in totalCount()
612 _smallLinearAllocBlock._word_size) * HeapWordSize; in free()
619 res = MAX2(res, MIN2(_smallLinearAllocBlock._word_size, in max_alloc_in_words()
642 p2i(_ptr), _word_size, _refillSize, _allocation_size_limit); in print_on()
1520 (_smallLinearAllocBlock._word_size == fc->size()), in verify_chunk_is_linear_alloc_block()
1523 (_smallLinearAllocBlock._word_size == fc->size())); in verify_chunk_is_linear_alloc_block()
1616 if (blk->_word_size == 0) { in getChunkFromLinearAllocBlock()
1623 assert(blk->_word_size != 0 && blk->_ptr != NULL, "consistency check"); in getChunkFromLinearAllocBlock()
1628 if (blk->_word_size == size) { // exactly satisfied in getChunkFromLinearAllocBlock()
1630 _bt.allocated(res, blk->_word_size); in getChunkFromLinearAllocBlock()
1632 size_t sz = blk->_word_size; in getChunkFromLinearAllocBlock()
1650 blk->_ptr = NULL; blk->_word_size = 0; in getChunkFromLinearAllocBlock()
1652 assert(blk->_ptr == NULL || blk->_word_size >= size + MinChunkSize, in getChunkFromLinearAllocBlock()
1659 size_t blk_size = blk->_word_size; in getChunkFromLinearAllocBlock()
1660 blk->_word_size -= size; in getChunkFromLinearAllocBlock()
1681 if (blk->_word_size >= size + MinChunkSize) { in getChunkFromLinearAllocBlockRemainder()
1688 size_t blk_size = blk->_word_size; in getChunkFromLinearAllocBlockRemainder()
1689 blk->_word_size -= size; in getChunkFromLinearAllocBlockRemainder()
2139 return _smallLinearAllocBlock._word_size == 0; in linearAllocationWouldFail()
2150 assert(blk->_word_size != 0 && blk->_word_size >= MinChunkSize, in repairLinearAllocBlock()
2153 fc->set_size(blk->_word_size); in repairLinearAllocBlock()
2164 assert(_smallLinearAllocBlock._word_size == 0, in refillLinearAllocBlocksIfNeeded()
2175 assert((blk->_ptr == NULL && blk->_word_size == 0) || in refillLinearAllocBlockIfNeeded()
2176 (blk->_ptr != NULL && blk->_word_size >= MinChunkSize), in refillLinearAllocBlockIfNeeded()
2186 assert(blk->_word_size == 0 && blk->_ptr == NULL, in refillLinearAllocBlock()
2199 blk->_word_size = fc->size(); in refillLinearAllocBlock()