/external/v8/src/profiler/ |
D | profile-generator.cc | 87 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()
|
D | heap-snapshot-generator.h | 312 return ComputeIntegerHash( in Hash() 523 return ComputeIntegerHash(static_cast<uint32_t>(info->GetHash())); in operator()
|
D | allocation-tracker.cc | 242 return ComputeIntegerHash(static_cast<uint32_t>(id)); in SnapshotObjectIdHash()
|
D | profile-generator.h | 246 return pair.code_entry->GetHash() ^ ComputeIntegerHash(pair.line_number); in operator()
|
D | heap-snapshot-generator.cc | 538 id ^= ComputeIntegerHash(static_cast<uint32_t>(element_count)); in GenerateId()
|
/external/libyuv/files/tools/ubsan/ |
D | blacklist.txt | 21 # fun:*v8*internal*ComputeIntegerHash*
|
/external/v8/src/ |
D | utils.h | 480 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()
|
D | objects-inl.h | 2983 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()
|
D | code-stub-assembler.h | 2291 Node* ComputeIntegerHash(Node* key); 2292 Node* ComputeIntegerHash(Node* key, Node* seed);
|
D | frames.cc | 2136 uint32_t hash = ComputeIntegerHash( in GetCacheEntry()
|
D | code-stub-assembler.cc | 7712 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/ |
D | bigint.h | 140 return is_zero() ? 0 : ComputeIntegerHash(static_cast<uint32_t>(digit(0))); in Hash()
|
D | ordered-hash-table.h | 147 uint32_t hash = ComputeIntegerHash(Smi::ToInt(key)); in KeyToFirstEntry()
|
/external/v8/src/compiler/ |
D | effect-control-linearizer.h | 185 Node* ComputeIntegerHash(Node* value);
|
D | effect-control-linearizer.cc | 4771 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/ |
D | builtins-collections-gen.cc | 850 ChangeInt32ToIntPtr(ComputeIntegerHash(key_untagged, Int32Constant(0))); in FindOrderedHashTableEntryForSmiKey()
|