Lines Matching defs:addr
526 entries_.at(to_entry_info_index).addr = kNullAddress;
534 // value in addr field. It is bad because later at RemoveDeadEntries
539 entries_.at(to_entry_info_index).addr = kNullAddress;
543 entries_.at(from_entry_info_index).addr = to;
559 void HeapObjectsMap::UpdateObjectSize(Address addr, int size) {
560 FindOrAddEntry(addr, size, false);
564 SnapshotObjectId HeapObjectsMap::FindEntry(Address addr) {
566 reinterpret_cast<void*>(addr), ComputeAddressHash(addr));
575 SnapshotObjectId HeapObjectsMap::FindOrAddEntry(Address addr,
580 reinterpret_cast<void*>(addr), ComputeAddressHash(addr));
588 reinterpret_cast<void*>(addr), entry_info.size, size);
595 entries_.push_back(EntryInfo(id, addr, size, accessed));
600 SnapshotObjectId HeapObjectsMap::FindMergedNativeEntry(NativeObject addr) {
601 auto it = merged_native_entries_map_.find(addr);
607 void HeapObjectsMap::AddMergedNativeEntry(NativeObject addr,
613 {addr, reinterpret_cast<size_t>(entry->value)});
699 entries_.at(0).addr == kNullAddress);
720 entries_map_.Lookup(reinterpret_cast<void*>(entry_info.addr),
721 ComputeAddressHash(entry_info.addr));
731 if (entry_info.addr) {
732 entries_map_.Remove(reinterpret_cast<void*>(entry_info.addr),
733 ComputeAddressHash(entry_info.addr));