Home
last modified time | relevance | path

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

/aosp_15_r20/art/runtime/mirror/
H A Dstring-inl.h84 inline int32_t String::ComputeHashCode() { in ComputeHashCode() function
96 DCHECK_IMPLIES(result == 0, ComputeHashCode() == 0) << ToModifiedUtf8(); in GetHashCode()
H A Dstring.h116 int32_t ComputeHashCode() REQUIRES_SHARED(Locks::mutator_lock_);
297 CHECK_EQ(new_hash_code, ComputeHashCode()); in SetHashCode()
H A Dstring.cc65 int32_t new_hash_code = ComputeHashCode(); in ComputeAndSetHashCode()
/aosp_15_r20/art/runtime/
H A Dintern_table-inl.h50 DCHECK_EQ(hash, s->ComputeHashCode()); in operator()
130 CHECK_EQ(hash, static_cast<uint32_t>(s->ComputeHashCode())); in AddInternStrings()
H A Druntime_image.cc358 DCHECK_EQ(hash, str->ComputeHashCode()); in operator ()()
1360 DCHECK_EQ(hash, static_cast<uint32_t>(str->ComputeHashCode())) in CopyDexCache()
1496 DCHECK_EQ(hash, static_cast<uint32_t>(str->ComputeHashCode())) in TryInitializeClass()
H A Dintern_table.cc208 DCHECK_IMPLIES(hash == 0u, s->ComputeHashCode() == 0); in Insert()
H A Dclass_linker.cc1560 DCHECK_EQ(hash, static_cast<uint32_t>(referred_str->ComputeHashCode())); in TestObject()
/aosp_15_r20/art/compiler/optimizing/
H A Dnodes.h2459 virtual size_t ComputeHashCode() const { in ComputeHashCode() function
3137 size_t ComputeHashCode() const override { return 0; }
3170 size_t ComputeHashCode() const override { return GetValue(); }
3214 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); }
3250 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); }
3307 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); }
6087 size_t ComputeHashCode() const override {
6088 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue();
6681 size_t ComputeHashCode() const override { return type_index_.index_; }
6928 size_t ComputeHashCode() const override { return string_index_.index_; }
[all …]
H A Dgvn.cc312 size_t hash_code = instruction->ComputeHashCode(); in HashCode()
H A Dnodes.cc1953 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode()); in Equals()
/aosp_15_r20/art/dex2oat/linker/
H A Dimage_writer.cc535 if (hash == 0u && str->ComputeHashCode() != 0) { in IsStronglyInternedString()