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.h110 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.h2563 virtual size_t ComputeHashCode() const { in ComputeHashCode() function
3196 size_t ComputeHashCode() const override { return 0; }
3229 size_t ComputeHashCode() const override { return GetValue(); }
3273 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); }
3309 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); }
3366 size_t ComputeHashCode() const override { return static_cast<size_t>(GetValue()); }
6186 size_t ComputeHashCode() const override {
6187 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue();
6276 size_t ComputeHashCode() const override {
6277 return (HInstruction::ComputeHashCode() << 7) | GetFieldOffset().SizeValue();
[all …]
Dnodes.cc1955 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode()); in Equals()