Lines Matching refs:start
55 static void RemoveRange(SlotSet* slot_set, MemoryChunk* chunk, Address start,
58 uintptr_t start_offset = start - chunk->address();
68 Address start, Address end) {
70 size_t start_bucket = SlotSet::BucketForSlot(start - chunk->address());
73 // is at the start of a bucket.
78 [start, end](MaybeObjectSlot slot) {
79 CHECK(!base::IsInRange(slot.address(), start, end + 1));
114 static void CheckNoneInRange(MemoryChunk* chunk, Address start, Address end) {
116 RememberedSetOperations::CheckNoneInRange(slot_set, chunk, start, end);
130 static void RemoveRange(MemoryChunk* chunk, Address start, Address end,
133 RememberedSetOperations::RemoveRange(slot_set, chunk, start, end, mode);
236 static void RemoveRangeTyped(MemoryChunk* page, Address start, Address end) {
241 return start <= slot_addr && slot_addr < end ? REMOVE_SLOT