Lines Matching defs:current
4195 // Perform compaction in the current array.
4610 Relocatable* current = isolate->relocatable_top();
4611 while (current != nullptr) {
4612 current->PostGarbageCollection();
4613 current = current->prev_;
4644 Relocatable* current = top;
4645 while (current != nullptr) {
4646 current->IterateInstance(v);
4647 current = current->prev_;
5266 Object current = boilerplate().GetHeap()->allocation_sites_list();
5267 while (current.IsAllocationSite()) {
5268 AllocationSite current_site = AllocationSite::cast(current);
5272 current = current_site.weak_next();
5587 Object current = *reactions;
5589 while (!current.IsSmi()) {
5590 Object next = PromiseReaction::cast(current).next();
5591 PromiseReaction::cast(current).set_next(reversed);
5592 reversed = current;
5593 current = next;
5809 for (InternalIndex current(0); current.raw_value() < capacity;
5810 /* {current} is advanced manually below, when appropriate.*/) {
5811 Object current_key = KeyAt(cage_base, current);
5813 ++current; // Advance to next entry.
5816 InternalIndex target = EntryForProbe(roots, current_key, probe, current);
5817 if (current == target) {
5818 ++current; // Advance to next entry.
5824 // Put the current element into the correct position.
5825 Swap(current, target, mode);
5827 // so don't advance {current} here!
5829 // The place for the current element is occupied. Leave the element
5832 ++current; // Advance to next entry.
5840 for (InternalIndex current : InternalIndex::Range(capacity)) {
5841 if (KeyAt(cage_base, current) == the_hole) {
5842 self->set_key(EntryToIndex(current) + kEntryKeyIndex, undefined,