Searched defs:_offset_array (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.hpp137 u_char* _offset_array; // byte array keeping backwards offsets member in class:G1BlockOffsetSharedArray
157 return _offset_array[index];
163 _offset_array[index] = offset;
170 _offset_array[index] = (u_char) pointer_delta(high, low);
178 memset(&_offset_array[index_for(left)], offset, num_cards);
183 _offset_array[i] = offset;
193 memset(&_offset_array[left], offset, num_cards);
198 _offset_array[i] = offset;
207 assert(_offset_array[index] == pointer_delta(high, low), "Wrong offset");
251 // Return the appropriate index into "_offset_array" fo
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.hpp128 u_char* _offset_array; // byte array keeping backwards offsets member in class:BlockOffsetSharedArray
135 return _offset_array[index];
143 assert(!reducing || _offset_array[index] >= offset, "Not reducing");
144 _offset_array[index] = offset;
152 assert(!reducing || _offset_array[index] >= (u_char)pointer_delta(high, low),
154 _offset_array[index] = (u_char)pointer_delta(high, low);
168 memset(&_offset_array[index_for(left)], offset, num_cards);
174 // assert(!reducing || _offset_array[i] >= offset, "Not reducing");
175 _offset_array[i] = offset;
190 memset(&_offset_array[lef
[all...]

Completed in 450 milliseconds