Searched refs:GetHashCode (Results 1 – 13 of 13) sorted by relevance
/art/runtime/ |
D | intern_table.cc | 109 uint32_t hash = static_cast<uint32_t>(s->GetHashCode()); in LookupWeak() 117 uint32_t hash = static_cast<uint32_t>(s->GetHashCode()); in LookupStrong() 133 uint32_t hash = static_cast<uint32_t>(s->GetHashCode()); in LookupWeakLocked() 140 uint32_t hash = static_cast<uint32_t>(s->GetHashCode()); in LookupStrongLocked() 295 uint32_t hash = static_cast<uint32_t>(s->GetHashCode()); in InternStrong() 313 uint32_t hash = static_cast<uint32_t>(s->GetHashCode()); in InternWeak()
|
D | lock_word-inl.h | 63 inline int32_t LockWord::GetHashCode() const { in GetHashCode() function
|
D | lock_word.h | 256 int32_t GetHashCode() const;
|
D | monitor.cc | 160 int32_t Monitor::GetHashCode() { in GetHashCode() function in art::Monitor 258 CHECK_EQ(hash_code_.load(std::memory_order_relaxed), static_cast<int32_t>(lw.GetHashCode())); in Install() 1018 LockWord new_lw = LockWord::FromHashCode(monitor->GetHashCode(), lw.GCState()); in Deflate() 1021 VLOG(monitor) << "Deflated " << obj << " to hash monitor " << monitor->GetHashCode(); in Deflate() 1206 Inflate(self, nullptr, h_obj.Get(), lock_word.GetHashCode()); in MonitorEnter()
|
D | monitor.h | 145 int32_t GetHashCode();
|
D | intern_table_test.cc | 85 int32_t hash = str->GetHashCode(); in TEST_F()
|
D | runtime_image.cc | 1673 reinterpret_cast<mirror::String*>(copy)->GetHashCode(); in CopyObject()
|
/art/runtime/mirror/ |
D | object.cc | 202 return hash_word.GetHashCode(); in IdentityHashCodeHelper() 224 return monitor->GetHashCode(); in IdentityHashCodeHelper() 227 return lw.GetHashCode(); in IdentityHashCodeHelper()
|
D | string-inl.h | 91 inline int32_t String::GetHashCode() { in GetHashCode() function
|
D | object_test.cc | 80 EXPECT_EQ(expected_hash, string->GetHashCode()); in AssertString() 578 EXPECT_EQ(0, empty->GetHashCode()); in TEST_F() 579 EXPECT_EQ(65, A->GetHashCode()); in TEST_F() 580 EXPECT_EQ(64578, ABC->GetHashCode()); in TEST_F()
|
D | string.h | 113 int32_t GetHashCode() REQUIRES_SHARED(Locks::mutator_lock_);
|
/art/compiler/optimizing/ |
D | gvn.cc | 103 if (node->GetHashCode() == hash_code) { in Lookup() 176 size_t new_index = BucketIndex(node->GetHashCode()); in PopulateFromInternal() 191 size_t GetHashCode() const { return hash_code_; } in GetHashCode() function in art::ValueSet::Node
|
/art/dex2oat/linker/ |
D | image_writer.cc | 697 saved_hashcode_map_.insert(std::make_pair(object, lw.GetHashCode())); in SetImageBinSlot() 3415 down_cast<mirror::String*>(copy)->GetHashCode(); in FixupObject()
|