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.h262 static uint32_t ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t length);
263 …static uint32_t ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t utf16Length, bool canBeCom…
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Dstring.cpp837 uint32_t String::ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t utf16Length) in ComputeHashcodeMutf8() function in panda::coretypes::String
840 return ComputeHashcodeMutf8(mutf8Data, utf16Length, canBeCompressed); in ComputeHashcodeMutf8()
844 uint32_t String::ComputeHashcodeMutf8(const uint8_t *mutf8Data, uint32_t utf16Length, bool canBeCom… in ComputeHashcodeMutf8() function in panda::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.cpp199 …String::ComputeHashcodeMutf8(reinterpret_cast<const uint8_t *>(SIMPLE_UTF8_STRING), SIMPLE_UTF8_ST… in TEST_F()
217 …auto rawHashCode = String::ComputeHashcodeMutf8(reinterpret_cast<const uint8_t *>(data.data()), si… in TEST_F()