Searched refs:_max_blocks (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.cpp189 assert(i < _max_blocks, "block index too large");
288 _max_blocks = set->_max_blocks;
289 if (_max_blocks <= preallocated_block_list_size) {
293 (IndexSet::BitBlock**) arena()->Amalloc_4(sizeof(IndexSet::BitBlock**) * _max_blocks);
295 for (uint i = 0; i < _max_blocks; i++) {
317 _max_blocks = (max_elements + bits_per_block - 1) / bits_per_block;
319 if (_max_blocks <= preallocated_block_list_size) {
322 _blocks = (IndexSet::BitBlock**) arena()->Amalloc_4(sizeof(IndexSet::BitBlock**) * _max_blocks);
324 for (uint i = 0; i < _max_blocks;
[all...]
H A DindexSet.hpp198 uint _max_blocks; member in class:IndexSet
266 for (uint i = 0; i < _max_blocks; i++) {
432 uint _max_blocks; member in class:VALUE_OBJ_CLASS_SPEC

Completed in 44 milliseconds