Searched refs:header_address (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/heap/cppgc/ |
D | object-start-bitmap.h | 136 void ObjectStartBitmap::SetBit(ConstAddress header_address) { in SetBit() argument 138 ObjectStartIndexAndBit(header_address, &cell_index, &object_bit); in SetBit() 145 void ObjectStartBitmap::ClearBit(ConstAddress header_address) { in ClearBit() argument 147 ObjectStartIndexAndBit(header_address, &cell_index, &object_bit); in ClearBit() 153 bool ObjectStartBitmap::CheckBit(ConstAddress header_address) const { in CheckBit() argument 155 ObjectStartIndexAndBit(header_address, &cell_index, &object_bit); in CheckBit() 178 void ObjectStartBitmap::ObjectStartIndexAndBit(ConstAddress header_address, in ObjectStartIndexAndBit() argument 181 const size_t object_offset = header_address - offset_; in ObjectStartIndexAndBit() 252 void PlatformAwareObjectStartBitmap::SetBit(ConstAddress header_address) { in SetBit() argument 254 ObjectStartBitmap::SetBit<AccessMode::kNonAtomic>(header_address); in SetBit() [all …]
|
D | compactor.cc | 330 for (Address header_address = page->PayloadStart(); in CompactPage() local 331 header_address < page->PayloadEnd();) { in CompactPage() 333 reinterpret_cast<HeapObjectHeader*>(header_address); in CompactPage() 340 ASAN_UNPOISON_MEMORY_REGION(header_address, size); in CompactPage() 341 header_address += size; in CompactPage() 358 header_address += size; in CompactPage() 369 compaction_state.RelocateObject(page, header_address, size); in CompactPage() 370 header_address += size; in CompactPage()
|
D | sweeper.cc | 339 const Address header_address = reinterpret_cast<Address>(header); in SweepNormalPage() local 340 if (start_of_gap != header_address) { in SweepNormalPage() 342 static_cast<size_t>(header_address - start_of_gap); in SweepNormalPage()
|