Home
last modified time | relevance | path

Searched refs:GetHashCode (Results 1 – 10 of 10) sorted by relevance

/art/runtime/mirror/
Dobject.cc160 return hash_word.GetHashCode(); in IdentityHashCode()
179 return monitor->GetHashCode(); in IdentityHashCode()
182 return lw.GetHashCode(); in IdentityHashCode()
Dstring-inl.h71 inline int32_t String::GetHashCode() { in GetHashCode() function
Dstring.h67 int32_t GetHashCode() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Dobject_test.cc73 EXPECT_EQ(expected_hash, string->GetHashCode()); in AssertString()
513 EXPECT_EQ(0, empty->GetHashCode()); in TEST_F()
514 EXPECT_EQ(65, A->GetHashCode()); in TEST_F()
515 EXPECT_EQ(64578, ABC->GetHashCode()); in TEST_F()
/art/runtime/
Dlock_word-inl.h55 inline int32_t LockWord::GetHashCode() const { in GetHashCode() function
Dlock_word.h151 int32_t GetHashCode() const;
Dmonitor.cc127 int32_t Monitor::GetHashCode() { in GetHashCode() function in art::Monitor
149 CHECK_EQ(hash_code_.LoadRelaxed(), static_cast<int32_t>(lw.GetHashCode())); in Install()
639 obj->SetLockWord(LockWord::FromHashCode(monitor->GetHashCode()), false); in Deflate()
640 VLOG(monitor) << "Deflated " << obj << " to hash monitor " << monitor->GetHashCode(); in Deflate()
775 Inflate(self, nullptr, h_obj.Get(), lock_word.GetHashCode()); in MonitorEnter()
Dmonitor.h111 int32_t GetHashCode();
Dintern_table.cc313 const_cast<GcRoot<mirror::String>&>(root).Read<kWithoutReadBarrier>()->GetHashCode()); in operator ()()
/art/compiler/
Dimage_writer.cc200 saved_hashes_.push_back(std::make_pair(obj, lw.GetHashCode())); in SetImageOffset()