Searched refs:ComputeHashCode (Results 1 – 11 of 11) sorted by relevance
/art/runtime/mirror/ |
D | string-inl.h | 84 inline int32_t String::ComputeHashCode() { in ComputeHashCode() function 96 DCHECK_IMPLIES(result == 0, ComputeHashCode() == 0) << ToModifiedUtf8(); in GetHashCode()
|
D | string.h | 116 int32_t ComputeHashCode() REQUIRES_SHARED(Locks::mutator_lock_); 297 CHECK_EQ(new_hash_code, ComputeHashCode()); in SetHashCode()
|
D | string.cc | 65 int32_t new_hash_code = ComputeHashCode(); in ComputeAndSetHashCode()
|
/art/runtime/ |
D | intern_table-inl.h | 50 DCHECK_EQ(hash, s->ComputeHashCode()); in operator() 130 CHECK_EQ(hash, static_cast<uint32_t>(s->ComputeHashCode())); in AddInternStrings()
|
D | intern_table.cc | 208 DCHECK_IMPLIES(hash == 0u, s->ComputeHashCode() == 0); in Insert()
|
D | runtime_image.cc | 358 DCHECK_EQ(hash, str->ComputeHashCode()); in operator ()() 1362 DCHECK_EQ(hash, static_cast<uint32_t>(str->ComputeHashCode())) in CopyDexCache() 1498 DCHECK_EQ(hash, static_cast<uint32_t>(str->ComputeHashCode())) in TryInitializeClass()
|
D | class_linker.cc | 1546 DCHECK_EQ(hash, static_cast<uint32_t>(referred_str->ComputeHashCode())); in TestObject()
|
/art/compiler/optimizing/ |
D | gvn.cc | 312 size_t hash_code = instruction->ComputeHashCode(); in HashCode()
|
D | nodes.h | 2638 virtual size_t ComputeHashCode() const { in ComputeHashCode() function 3316 size_t ComputeHashCode() const override { return 0; } 3349 size_t ComputeHashCode() const override { return GetValue(); } 3393 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); } 3429 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); } 3486 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); } 6239 size_t ComputeHashCode() const override { 6240 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue(); 6833 size_t ComputeHashCode() const override { return type_index_.index_; } 7080 size_t ComputeHashCode() const override { return string_index_.index_; } [all …]
|
D | nodes.cc | 1901 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode()); in Equals()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 534 if (hash == 0u && str->ComputeHashCode() != 0) { in IsStronglyInternedString()
|