Lines Matching defs:end
56 Address end, SlotSet::EmptyBucketMode mode) {
59 uintptr_t end_offset = end - chunk->address();
68 Address start, Address end) {
71 // Both 'end' and 'end_bucket' are exclusive limits, so do some index
72 // juggling to make sure we get the right bucket even if the end address
75 SlotSet::BucketForSlot(end - chunk->address() - kTaggedSize) + 1;
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