Home
last modified time | relevance | path

Searched refs:hash_code (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dgvn.cc86 size_t hash_code = HashCode(instruction); in Add() local
87 size_t index = BucketIndex(hash_code); in Add()
92 buckets_[index] = new (allocator_) Node(instruction, hash_code, buckets_[index]); in Add()
99 size_t hash_code = HashCode(instruction); in Lookup() local
100 size_t index = BucketIndex(hash_code); in Lookup()
103 if (node->GetHashCode() == hash_code) { in Lookup()
115 size_t hash_code = HashCode(instruction); in Contains() local
116 size_t index = BucketIndex(hash_code); in Contains()
188 Node(HInstruction* instruction, size_t hash_code, Node* next) in Node() argument
189 : instruction_(instruction), hash_code_(hash_code), next_(next) {} in Node()
[all …]
/art/runtime/
Dmonitor_pool.h48 int32_t hash_code) in CreateMonitor() argument
51 Monitor* mon = new Monitor(self, owner, obj, hash_code); in CreateMonitor()
55 return GetMonitorPool()->CreateMonitorInPool(self, owner, obj, hash_code); in CreateMonitor()
131 int32_t hash_code)
Dlock_word.h156 static LockWord FromHashCode(uint32_t hash_code, uint32_t gc_state) { in FromHashCode() argument
157 CHECK_LE(hash_code, static_cast<uint32_t>(kMaxHash)); in FromHashCode()
159 return LockWord((hash_code << kHashShift) | in FromHashCode()
Dmonitor_pool.cc111 int32_t hash_code) in CreateMonitorInPool() argument
129 Monitor* monitor = new(mon_uninitialized) Monitor(self, owner, obj, hash_code, id); in CreateMonitorInPool()
Dmonitor.h153 uint32_t hash_code) REQUIRES_SHARED(Locks::mutator_lock_);
176 Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code)
178 Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code, MonitorId id)
204 static void Inflate(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code)
Dmonitor.cc93 Monitor::Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code) in Monitor() argument
101 hash_code_(hash_code), in Monitor()
121 int32_t hash_code, in Monitor() argument
130 hash_code_(hash_code), in Monitor()
1029 void Monitor::Inflate(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code) { in Inflate() argument
1033 Monitor* m = MonitorPool::CreateMonitor(self, owner, obj, hash_code); in Inflate()
1040 VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code in Inflate()
1051 uint32_t hash_code) { in InflateThinLocked() argument
1056 Inflate(self, self, obj.Get(), hash_code); in InflateThinLocked()
1075 Inflate(self, owner, obj.Get(), hash_code); in InflateThinLocked()
/art/runtime/mirror/
Dstring.cc52 int32_t hash_code = 0; in ComputeHashCode() local
54 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength()); in ComputeHashCode()
56 hash_code = ComputeUtf16Hash(GetValue(), GetLength()); in ComputeHashCode()
58 SetHashCode(hash_code); in ComputeHashCode()
59 return hash_code; in ComputeHashCode()
Dobject_test.cc789 int32_t hash_code = mirror::Object::GenerateIdentityHashCode(); in TEST_F() local
790 EXPECT_NE(hash_code, 0); in TEST_F()