Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dstring.h74 int32_t ComputeHashCode() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Dstring-inl.h198 result = ComputeHashCode(); in GetHashCode()
Dstring.cc66 int String::ComputeHashCode() { in ComputeHashCode() function in art::mirror::String
/art/compiler/optimizing/
Dnodes.h1499 virtual size_t ComputeHashCode() const { in ComputeHashCode() function
2228 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); } in ComputeHashCode() function
2266 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); } in ComputeHashCode() function
2301 size_t ComputeHashCode() const OVERRIDE { return 0; } in ComputeHashCode() function
2322 size_t ComputeHashCode() const OVERRIDE { return GetValue(); } in ComputeHashCode() function
2349 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); } in ComputeHashCode() function
3166 size_t ComputeHashCode() const OVERRIDE { in ComputeHashCode() function
3167 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue(); in ComputeHashCode()
3435 size_t ComputeHashCode() const OVERRIDE { return type_index_; } in ComputeHashCode() function
3510 size_t ComputeHashCode() const OVERRIDE { return string_index_; } in ComputeHashCode() function
[all …]
Dgvn.cc266 size_t hash_code = instruction->ComputeHashCode(); in HashCode()
Dnodes.cc887 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode()); in Equals()