Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
Dstring.h268 static uint32_t ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t length);
269 …static uint32_t ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t utf16Length, bool canBeCom…
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Dstring.cpp852 uint32_t String::ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t utf16Length) in ComputeHashcodeMutf8() function in ark::coretypes::String
855 return ComputeHashcodeMutf8(mutf8Data, utf16Length, canBeCompressed); in ComputeHashcodeMutf8()
859 uint32_t String::ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t utf16Length, bool canBeCom… in ComputeHashcodeMutf8() function in ark::coretypes::String
/arkcompiler/runtime_core/static_core/runtime/
Dstring_table.cpp95 …uint32_t hashCode = coretypes::String::ComputeHashcodeMutf8(utf8Data, utf16Length, canBeCompressed… in GetString()
/arkcompiler/runtime_core/static_core/runtime/tests/
Dstring_test.cpp201 …String::ComputeHashcodeMutf8(reinterpret_cast<const uint8_t *>(SIMPLE_UTF8_STRING), SIMPLE_UTF8_ST… in TEST_F()
219 …auto rawHashCode = String::ComputeHashcodeMutf8(reinterpret_cast<const uint8_t *>(data.data()), si… in TEST_F()