Searched refs:ComputeIntegerHash (Results 1 – 13 of 13) sorted by relevance
/external/v8/src/profiler/ |
D | profile-generator.cc | 98 uint32_t hash = ComputeIntegerHash(tag(), v8::internal::kZeroHashSeed); in GetHash() 100 hash ^= ComputeIntegerHash(static_cast<uint32_t>(script_id_), in GetHash() 102 hash ^= ComputeIntegerHash(static_cast<uint32_t>(position_), in GetHash() 105 hash ^= ComputeIntegerHash( in GetHash() 108 hash ^= ComputeIntegerHash( in GetHash() 111 hash ^= ComputeIntegerHash( in GetHash() 114 hash ^= ComputeIntegerHash(line_number_, v8::internal::kZeroHashSeed); in GetHash()
|
D | heap-snapshot-generator.h | 295 return ComputeIntegerHash( in Hash() 503 return ComputeIntegerHash(static_cast<uint32_t>(info->GetHash()), in InfoHash()
|
D | allocation-tracker.cc | 255 return ComputeIntegerHash(static_cast<uint32_t>(id), in SnapshotObjectIdHash()
|
D | heap-snapshot-generator.cc | 695 id ^= ComputeIntegerHash(static_cast<uint32_t>(element_count), in GenerateId()
|
/external/v8/src/js/ |
D | collection.js | 82 function ComputeIntegerHash(key, seed) { class 93 %SetForceInlineFlag(ComputeIntegerHash); 97 return ComputeIntegerHash(key, 0);
|
/external/v8/test/cctest/ |
D | test-hashing.cc | 143 uint32_t runtime_hash = ComputeIntegerHash(key, isolate->heap()->HashSeed()); in check()
|
D | test-code-stub-assembler.cc | 93 TEST(ComputeIntegerHash) { in TEST() argument 97 m.Return(m.SmiFromWord32(m.ComputeIntegerHash( in TEST() 113 uint32_t hash = ComputeIntegerHash(k, hash_seed->value()); in TEST()
|
/external/v8/src/ |
D | utils.h | 374 inline uint32_t ComputeIntegerHash(uint32_t key, uint32_t seed) { 400 return ComputeIntegerHash(
|
D | code-stub-assembler.h | 297 compiler::Node* ComputeIntegerHash(compiler::Node* key, compiler::Node* seed);
|
D | code-stub-assembler.cc | 1625 Node* CodeStubAssembler::ComputeIntegerHash(Node* key, Node* seed) { in ComputeIntegerHash() function in v8::internal::CodeStubAssembler 1657 Node* hash = ComputeIntegerHash(key, seed); in NumberDictionaryLookup()
|
D | frames.cc | 1719 uint32_t hash = ComputeIntegerHash(ObjectAddressForHashing(inner_pointer), in GetCacheEntry()
|
D | objects-inl.h | 7494 return ComputeIntegerHash(key, 0); in Hash() 7501 return ComputeIntegerHash(static_cast<uint32_t>(other->Number()), 0); in HashForObject() 7506 return ComputeIntegerHash(key, seed); in SeededHash() 7514 return ComputeIntegerHash(static_cast<uint32_t>(other->Number()), seed); in SeededHashForObject()
|
D | objects.cc | 1693 ComputeIntegerHash(Smi::cast(object)->value(), kZeroHashSeed); in GetSimpleHash() 2698 hash = ComputeIntegerHash(READ_INT32_FIELD(this, kValueOffset), seed); in Hash() 2699 hash = ComputeIntegerHash( in Hash() 2701 hash = ComputeIntegerHash( in Hash() 2703 hash = ComputeIntegerHash( in Hash()
|