Searched refs:start_index (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp105 size_t start_index = index_for(start); local
107 soc->do_region(&_offset_array[start_index],
108 (end_index - start_index) * sizeof(_offset_array[0]));
278 size_t start_index = _array->index_for(blk_start); local
282 HeapWord* boundary = _array->address_for_index(start_index);
286 // adjust card boundary and start_index forward to next card
288 start_index++;
290 assert(start_index <= end_index, "monotonicity of index_for()");
295 _array->set_offset_array(start_index, boundary, blk_start, reducing);
300 _array->set_offset_array(start_index, boundar
772 size_t start_index = _array->index_for(blk_start); local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.cpp248 size_t start_index = _array->index_for(blk_start); local
252 HeapWord* boundary = _array->address_for_index(start_index);
256 // adjust card boundary and start_index forward to next card
258 start_index++;
260 assert(start_index <= end_index, "monotonicity of index_for()");
265 _array->set_offset_array(start_index, boundary, blk_start);
270 _array->set_offset_array(start_index, boundary, blk_start);
273 if (start_index < end_index) {
274 HeapWord* rem_st = _array->address_for_index(start_index) + N_words;
281 _array->check_offset_array(start_index, boundar
542 size_t start_index = _array->index_for(blk_start); local
[all...]
H A Dg1CollectedHeap.cpp2753 const uint start_index = start_hr->hrs_index(); local
2757 const uint index = (start_index + count) % regions;
3002 const uint start_index = n_regions() * worker_i / worker_num; local
3003 return region_at(start_index);
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp65 int start_index,
70 for (int i = end_index; --i >= start_index; ) {
261 int start_index = _all_chunks->length() - MAX_RECENT; local
262 if (start_index < 0) start_index = 0;
263 ms = ns->find_match(_all_chunks, start_index, this);
64 find_match(GrowableArray<DIR_Chunk*>* arr, int start_index, DebugInformationRecorder* dir) argument

Completed in 57 milliseconds