Home
last modified time | relevance | path

Searched refs:ComputeHashcodeMutf8 (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/runtime_core/runtime/include/coretypes/
Dstring.h260 static uint32_t ComputeHashcodeMutf8(const uint8_t *mutf8_data, uint32_t length);
261 …static uint32_t ComputeHashcodeMutf8(const uint8_t *mutf8_data, uint32_t utf16_length, bool can_be…
/arkcompiler/runtime_core/runtime/coretypes/
Dstring.cpp650 uint32_t String::ComputeHashcodeMutf8(const uint8_t *mutf8_data, uint32_t utf16_length) in ComputeHashcodeMutf8() function in panda::coretypes::String
653 return ComputeHashcodeMutf8(mutf8_data, utf16_length, can_be_compressed); in ComputeHashcodeMutf8()
657 uint32_t String::ComputeHashcodeMutf8(const uint8_t *mutf8_data, uint32_t utf16_length, bool can_be… in ComputeHashcodeMutf8() function in panda::coretypes::String
/arkcompiler/runtime_core/runtime/
Dstring_table.cpp94 …uint32_t hash_code = coretypes::String::ComputeHashcodeMutf8(utf8_data, utf16_length, can_be_compr… in GetString()
/arkcompiler/runtime_core/runtime/tests/
Dstring_test.cpp192 …String::ComputeHashcodeMutf8(reinterpret_cast<const uint8_t *>(SIMPLE_UTF8_STRING), SIMPLE_UTF8_ST… in TEST_F()
210 …auto raw_hash_code = String::ComputeHashcodeMutf8(reinterpret_cast<const uint8_t *>(data.data()), … in TEST_F()