Home
last modified time | relevance | path

Searched refs:hash_code_ (Results 1 – 6 of 6) sorted by relevance

/art/runtime/mirror/
Dstring.h252 DCHECK_EQ(0, GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_))); in SetHashCode()
253 SetField32<false, false>(OFFSET_OF_OBJECT_MEMBER(String, hash_code_), new_hash_code); in SetHashCode()
269 uint32_t hash_code_; variable
Dstring-inl.h71 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_)); in GetHashCode()
/art/compiler/optimizing/
Dgvn.cc189 : instruction_(instruction), hash_code_(hash_code), next_(next) {} in Node()
191 size_t GetHashCode() const { return hash_code_; } in GetHashCode()
197 return new (allocator) Node(instruction_, hash_code_, new_next); in Dup()
202 const size_t hash_code_; member in art::ValueSet::Node
/art/runtime/
Dmonitor.h144 return hash_code_.load(std::memory_order_relaxed) != 0; in HasHashCode()
343 AtomicInteger hash_code_; variable
Dmonitor.cc101 hash_code_(hash_code), in Monitor()
130 hash_code_(hash_code), in Monitor()
147 int32_t hc = hash_code_.load(std::memory_order_relaxed); in GetHashCode()
151 hash_code_.CompareAndSetStrongRelaxed(0, mirror::Object::GenerateIdentityHashCode()); in GetHashCode()
152 hc = hash_code_.load(std::memory_order_relaxed); in GetHashCode()
254 CHECK_EQ(hash_code_.load(std::memory_order_relaxed), static_cast<int32_t>(lw.GetHashCode())); in Install()
Dclass_linker_test.cc633 addOffset(OFFSETOF_MEMBER(mirror::String, hash_code_), "hash"); in StringOffsets()