Searched refs:cur_entry (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.cpp184 jbyte* cur_entry = _ct->byte_for(mr.last()); local
188 while (cur_entry >= limit) {
189 HeapWord* cur_hw = _ct->addr_for(cur_entry);
190 if ((*cur_entry != CardTableRS::clean_card_val()) && clear_card(cur_entry)) {
203 if (is_word_aligned(cur_entry)) {
204 jbyte* cur_row = cur_entry - BytesPerWord;
208 cur_entry = cur_row + BytesPerWord;
209 cur_hw = _ct->addr_for(cur_entry);
218 // Note that "cur_entry" lead
423 jbyte* cur_entry = byte_for(used.start()); local
650 jbyte* cur_entry = byte_for(mr.start()); local
[all...]
H A DcardTableModRefBS.cpp533 jbyte* cur_entry = byte_for(mri.last()); local
535 while (cur_entry >= limit) {
536 jbyte* next_entry = cur_entry - 1;
537 if (*cur_entry != clean_card) {
542 cur_entry = next_entry;
548 MemRegion cur_cards(addr_for(cur_entry),
553 cur_entry = next_entry;
613 jbyte *cur_entry, *next_entry, *limit; local
614 for (cur_entry = byte_for(mri.start()), limit = byte_for(mri.last());
615 cur_entry <
639 jbyte* cur_entry, *next_entry, *limit; local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp350 LazyClassPathEntry* cur_entry = NULL; local
380 if ((cur_entry != NULL) &&
383 print_meta_index(cur_entry, boot_class_path_packages);
387 cur_entry->set_meta_index(index);
389 cur_entry = NULL;
397 cur_entry = (LazyClassPathEntry*) entry;
407 if (cur_entry != NULL) {
408 cur_entry->set_meta_index(new MetaIndex(NULL, 0));
410 cur_entry = NULL;
421 if (!skipCurrentJar && cur_entry !
[all...]

Completed in 34 milliseconds