Lines Matching full:address
35 int IdentityMapBase::Hash(Object* address) {
36 CHECK_NE(address, heap_->not_mapped_symbol());
37 uintptr_t raw_address = reinterpret_cast<uintptr_t>(address);
43 int IdentityMapBase::LookupIndex(Object* address) {
44 int start = Hash(address) & mask_;
47 if (keys_[index] == address) return index; // Found.
51 if (keys_[index] == address) return index; // Found.
58 int IdentityMapBase::InsertIndex(Object* address) {
61 int start = Hash(address) & mask_;
65 if (keys_[index] == address) return index; // Found.
67 keys_[index] = address;
78 // Searches this map for the given key using the object's address
111 // Searches this map for the given key using the object's address