Lines Matching defs:address
50 int IdentityMapBase::ScanKeysFor(Address address, uint32_t hash) const {
54 if (keys_[index] == address) return index; // Found.
58 if (keys_[index] == address) return index; // Found.
64 std::pair<int, bool> IdentityMapBase::InsertKey(Address address,
80 if (keys_[index] == address) return {index, true}; // Found.
84 keys_[index] = address;
160 uint32_t IdentityMapBase::Hash(Address address) const {
161 CHECK_NE(address, ReadOnlyRoots(heap_).not_mapped_symbol().ptr());
162 return static_cast<uint32_t>(hasher_(address));
165 // Searches this map for the given key using the object's address
179 // Searches this map for the given key using the object's address
191 // Inserts the given key using the object's address as the identity, returning
223 // Deletes the given key from the map using the object's address as the