Lines Matching defs:slot_addr
31 static void Insert(SlotSet* slot_set, MemoryChunk* chunk, Address slot_addr) {
32 DCHECK(chunk->Contains(slot_addr));
33 uintptr_t offset = slot_addr - chunk->address();
48 static void Remove(SlotSet* slot_set, MemoryChunk* chunk, Address slot_addr) {
50 uintptr_t offset = slot_addr - chunk->address();
93 static void Insert(MemoryChunk* chunk, Address slot_addr) {
94 DCHECK(chunk->Contains(slot_addr));
99 RememberedSetOperations::Insert<access_mode>(slot_set, chunk, slot_addr);
104 static bool Contains(MemoryChunk* chunk, Address slot_addr) {
105 DCHECK(chunk->Contains(slot_addr));
110 uintptr_t offset = slot_addr - chunk->address();
122 static void Remove(MemoryChunk* chunk, Address slot_addr) {
123 DCHECK(chunk->Contains(slot_addr));
125 RememberedSetOperations::Remove(slot_set, chunk, slot_addr);
240 [=](SlotType slot_type, Address slot_addr) {
241 return start <= slot_addr && slot_addr < end ? REMOVE_SLOT