Searched defs:end_card (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparCardTableModRefBS.cpp102 jbyte* end_card = byte_after(used.last()); local
118 while (chunk_card_start < end_card) {
129 chunk_card_end >= end_card ?
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.cpp169 size_t end_card = _array->index_for(end-1); local
171 assert(end ==_array->address_for_index(end_card)+N_words, "Precondition");
172 set_remainder_to_point_to_start_incl(start_card, end_card); // closed interval
176 // a closed, inclusive interval: [start_card, end_card], cf set_remainder_to_point_to_start()
179 G1BlockOffsetArray::set_remainder_to_point_to_start_incl(size_t start_card, size_t end_card) { argument
180 if (start_card > end_card) {
194 if (reach >= end_card) {
195 _array->set_offset_array(start_card_for_region, end_card, offset);
202 assert(start_card_for_region > end_card, "Sanity check");
203 DEBUG_ONLY(check_all_cards(start_card, end_card);)
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp137 jbyte* end_card = byte_for(sp_top - 1); // sp_top is exclusive local
139 while (current_card <= end_card) {
161 while (current_card <= end_card) {
167 if (current_card >= end_card) {
168 first_clean_card = end_card + 1;
233 jbyte* end_card = byte_for(sp_top - 1) + 1; local
239 for (jbyte* slice = start_card; slice < end_card; slice += slice_width) {
241 if (worker_start_card >= end_card)
245 if (worker_end_card > end_card)
246 worker_end_card = end_card;
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp178 size_t end_card = _array->index_for(end-1); local
180 assert(end ==_array->address_for_index(end_card)+N_words, "Precondition");
181 set_remainder_to_point_to_start_incl(start_card, end_card, reducing); // closed interval
186 // a closed, inclusive interval: [start_card, end_card], cf set_remainder_to_point_to_start()
189 BlockOffsetArray::set_remainder_to_point_to_start_incl(size_t start_card, size_t end_card, bool reducing) { argument
192 if (start_card > end_card) {
206 if (reach >= end_card) {
207 _array->set_offset_array(start_card_for_region, end_card, offset, reducing);
214 assert(start_card_for_region > end_card, "Sanity check");
215 DEBUG_ONLY(check_all_cards(start_card, end_card);)
[all...]

Completed in 71 milliseconds