Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dstring-inl.h73 result = ComputeHashCode(); in GetHashCode()
Dstring.h108 int32_t ComputeHashCode() REQUIRES_SHARED(Locks::mutator_lock_);
Dstring.cc51 int String::ComputeHashCode() { in ComputeHashCode() function in art::mirror::String
/art/compiler/optimizing/
Dgvn.cc312 size_t hash_code = instruction->ComputeHashCode(); in HashCode()
Dnodes.h2432 virtual size_t ComputeHashCode() const { in ComputeHashCode() function
3006 size_t ComputeHashCode() const override { return 0; } in ComputeHashCode() function
3039 size_t ComputeHashCode() const override { return GetValue(); } in ComputeHashCode() function
3083 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); } in ComputeHashCode() function
3119 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); } in ComputeHashCode() function
3176 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); } in ComputeHashCode() function
5931 size_t ComputeHashCode() const override { in ComputeHashCode() function
5932 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue(); in ComputeHashCode()
6430 size_t ComputeHashCode() const override { return type_index_.index_; } in ComputeHashCode() function
6665 size_t ComputeHashCode() const override { return string_index_.index_; } in ComputeHashCode() function
[all …]
Dnodes.cc1735 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode()); in Equals()