Home
last modified time | relevance | path

Searched refs:ComputeIntegerHash (Results 1 – 16 of 16) sorted by relevance

/external/v8/src/profiler/
Dprofile-generator.cc87 uint32_t hash = ComputeIntegerHash(tag()); in GetHash()
89 hash ^= ComputeIntegerHash(static_cast<uint32_t>(script_id_)); in GetHash()
90 hash ^= ComputeIntegerHash(static_cast<uint32_t>(position_)); in GetHash()
92 hash ^= ComputeIntegerHash( in GetHash()
94 hash ^= ComputeIntegerHash( in GetHash()
96 hash ^= ComputeIntegerHash(line_number_); in GetHash()
Dheap-snapshot-generator.h312 return ComputeIntegerHash( in Hash()
523 return ComputeIntegerHash(static_cast<uint32_t>(info->GetHash())); in operator()
Dallocation-tracker.cc242 return ComputeIntegerHash(static_cast<uint32_t>(id)); in SnapshotObjectIdHash()
Dprofile-generator.h246 return pair.code_entry->GetHash() ^ ComputeIntegerHash(pair.line_number); in operator()
Dheap-snapshot-generator.cc538 id ^= ComputeIntegerHash(static_cast<uint32_t>(element_count)); in GenerateId()
/external/libyuv/files/tools/ubsan/
Dblacklist.txt21 # fun:*v8*internal*ComputeIntegerHash*
/external/v8/src/
Dutils.h480 inline uint32_t ComputeIntegerHash(uint32_t key, uint64_t seed) { in ComputeIntegerHash() function
492 inline uint32_t ComputeIntegerHash(uint32_t key) { in ComputeIntegerHash() function
493 return ComputeIntegerHash(key, kZeroHashSeed); in ComputeIntegerHash()
509 return ComputeIntegerHash( in ComputePointerHash()
514 return ComputeIntegerHash(static_cast<uint32_t>(address & 0xFFFFFFFFul)); in ComputeAddressHash()
Dobjects-inl.h2983 return ComputeIntegerHash(key, isolate->heap()->HashSeed()); in Hash()
2989 return ComputeIntegerHash(static_cast<uint32_t>(other->Number()), in HashForObject()
3070 uint32_t hash = ComputeIntegerHash(Smi::ToInt(object)); in GetSimpleHash()
3081 hash = ComputeIntegerHash(FastD2I(num)); in GetSimpleHash()
Dcode-stub-assembler.h2291 Node* ComputeIntegerHash(Node* key);
2292 Node* ComputeIntegerHash(Node* key, Node* seed);
Dframes.cc2136 uint32_t hash = ComputeIntegerHash( in GetCacheEntry()
Dcode-stub-assembler.cc7712 Node* CodeStubAssembler::ComputeIntegerHash(Node* key) { in ComputeIntegerHash() function in v8::internal::CodeStubAssembler
7713 return ComputeIntegerHash(key, IntPtrConstant(kZeroHashSeed)); in ComputeIntegerHash()
7716 Node* CodeStubAssembler::ComputeIntegerHash(Node* key, Node* seed) { in ComputeIntegerHash() function in v8::internal::CodeStubAssembler
7749 ChangeUint32ToWord(ComputeIntegerHash(intptr_index, int32_seed)); in NumberDictionaryLookup()
/external/v8/src/objects/
Dbigint.h140 return is_zero() ? 0 : ComputeIntegerHash(static_cast<uint32_t>(digit(0))); in Hash()
Dordered-hash-table.h147 uint32_t hash = ComputeIntegerHash(Smi::ToInt(key)); in KeyToFirstEntry()
/external/v8/src/compiler/
Deffect-control-linearizer.h185 Node* ComputeIntegerHash(Node* value);
Deffect-control-linearizer.cc4771 Node* EffectControlLinearizer::ComputeIntegerHash(Node* value) { in ComputeIntegerHash() function in v8::internal::compiler::EffectControlLinearizer
4790 Node* hash = ChangeUint32ToUintPtr(ComputeIntegerHash(key)); in LowerFindOrderedHashMapEntryForInt32Key()
/external/v8/src/builtins/
Dbuiltins-collections-gen.cc850 ChangeInt32ToIntPtr(ComputeIntegerHash(key_untagged, Int32Constant(0))); in FindOrderedHashTableEntryForSmiKey()