Searched defs:hash_code (Results 1 - 6 of 6) sorted by last modified time

/art/runtime/jdwp/
H A Dobject_registry.cc269 int32_t hash_code = entry->identity_hash_code; local
270 for (auto inner_it = object_to_entry_.lower_bound(hash_code), end = object_to_entry_.end();
271 inner_it != end && inner_it->first == hash_code; ++inner_it) {
/art/runtime/
H A Dlock_word.h152 static LockWord FromHashCode(uint32_t hash_code, uint32_t gc_state) { argument
153 CHECK_LE(hash_code, static_cast<uint32_t>(kMaxHash));
155 return LockWord((hash_code << kHashShift) |
H A Dmonitor.cc92 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) argument
100 hash_code_(hash_code),
114 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code, argument
123 hash_code_(hash_code),
957 void Monitor::Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) { argument
961 Monitor* m = MonitorPool::CreateMonitor(self, owner, obj, hash_code);
968 VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code
979 uint32_t hash_code) {
984 Inflate(self, self, obj.Get(), hash_code);
1003 Inflate(self, owner, obj.Get(), hash_code);
978 InflateThinLocked(Thread* self, Handle<mirror::Object> obj, LockWord lock_word, uint32_t hash_code) argument
[all...]
/art/runtime/mirror/
H A Dobject_test.cc726 int32_t hash_code = mirror::Object::GenerateIdentityHashCode(); local
727 EXPECT_NE(hash_code, 0);
H A Dstring.cc68 int32_t hash_code = 0; local
70 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength());
72 hash_code = ComputeUtf16Hash(GetValue(), GetLength());
74 SetHashCode(hash_code);
75 return hash_code;
/art/compiler/optimizing/
H A Dgvn.cc89 size_t hash_code = HashCode(instruction); local
90 size_t index = BucketIndex(hash_code);
95 buckets_[index] = new (allocator_) Node(instruction, hash_code, buckets_[index]);
102 size_t hash_code = HashCode(instruction); local
103 size_t index = BucketIndex(hash_code);
106 if (node->GetHashCode() == hash_code) {
118 size_t hash_code = HashCode(instruction); local
119 size_t index = BucketIndex(hash_code);
191 Node(HInstruction* instruction, size_t hash_code, Node* next) argument
192 : instruction_(instruction), hash_code_(hash_code), next
300 size_t hash_code = instruction->ComputeHashCode(); local
[all...]

Completed in 78 milliseconds