Searched refs:GetHash32 (Results 1 – 15 of 15) sorted by relevance
/arkcompiler/runtime_core/libpandabase/tests/ |
D | hash_test.cpp | 66 uint32_t first_hash = T::GetHash32(reinterpret_cast<uint8_t *>(&object32), KEY32INBYTES); in OneObject32bitsHashTest() 67 uint32_t second_hash = T::GetHash32(reinterpret_cast<uint8_t *>(&object32), KEY32INBYTES); in OneObject32bitsHashTest() 74 first_hash = T::GetHash32(reinterpret_cast<uint8_t *>(&object8), KEY8INBYTES); in OneObject32bitsHashTest() 75 second_hash = T::GetHash32(reinterpret_cast<uint8_t *>(&object8), KEY8INBYTES); in OneObject32bitsHashTest() 83 first_hash = T::GetHash32(reinterpret_cast<uint8_t *>(&object40), KEY40INBYTES); in OneObject32bitsHashTest() 84 second_hash = T::GetHash32(reinterpret_cast<uint8_t *>(&object40), KEY40INBYTES); in OneObject32bitsHashTest() 111 uint32_t second_hash = T::GetHash32(mutf8_string, string_size); in StringMemHashTest() 131 uint32_t second_hash = T::GetHash32(mutf8_string, string_size - 1); in EndOfPageStringHashTest()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | hash.h | 53 inline uint32_t GetHash32(const uint8_t *key, size_t len) in GetHash32() function 55 return Hash::GetHash32(key, len); in GetHash32()
|
D | hash_base.h | 47 static uint32_t GetHash32(const uint8_t *key, size_t len) in GetHash32() function
|
/arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
D | vn.h | 77 return GetHash32(reinterpret_cast<const uint8_t *>(obj->GetArray()), obj->GetSize()); in operator()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | tagged_dictionary.cpp | 186 … return GetHash32(reinterpret_cast<uint8_t *>(&keyValue), sizeof(keyValue) / sizeof(uint8_t)); in Hash() 190 … return GetHash32(reinterpret_cast<uint8_t *>(&keyValue), sizeof(keyValue) / sizeof(uint8_t)); in Hash()
|
D | tagged_node.h | 76 … return GetHash32(reinterpret_cast<uint8_t *>(&keyValue), sizeof(keyValue) / sizeof(uint8_t)); in Hash()
|
D | linked_hash_table.cpp | 257 return GetHash32(reinterpret_cast<uint8_t *>(&keyValue), sizeof(keyValue) / sizeof(uint8_t)); in Hash()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/ |
D | js_pandafile_test.cpp | 295 GetHash32(reinterpret_cast<const uint8_t *>(pf->GetPandaFile()->GetHeader()), in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_lightweightset.cpp | 475 return GetHash32(reinterpret_cast<uint8_t *>(&keyValue), sizeof(keyValue) / sizeof(uint8_t)); in Hash()
|
D | js_api_lightweightmap.cpp | 479 return GetHash32(reinterpret_cast<uint8_t *>(&keyValue), sizeof(keyValue) / sizeof(uint8_t)); in Hash()
|
/arkcompiler/runtime_core/libpandafile/ |
D | file.cpp | 419 …UNIQ_ID(merge_hashes(FILENAME_HASH, GetHash32(reinterpret_cast<const uint8_t *>(GetHeader()), size… in File()
|
D | file_item_container.cpp | 127 hash_ = GetHash32(data_.data(), data_.size()); in Initialize()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs.h | 135 V(GetHash32) \
|
D | runtime_stubs.cpp | 147 DEF_RUNTIME_STUBS(GetHash32) in DEF_RUNTIME_STUBS() argument 153 uint32_t result = panda::GetHash32(pkey, len.GetInt()); in DEF_RUNTIME_STUBS()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | stub_builder.cpp | 190 GateRef hash = CallRuntime(glue, RTSTUB_ID(GetHash32), in FindElementFromNumberDictionary()
|