Home
last modified time | relevance | path

Searched refs:ComputeHashcodeUtf16 (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
Dstring.h270 static uint32_t ComputeHashcodeUtf16(const uint16_t *utf16Data, uint32_t length);
/arkcompiler/ets_runtime/ecmascript/
Decma_string_table.cpp326 …uint32_t hashcode = EcmaStringAccessor::ComputeHashcodeUtf16(const_cast<uint16_t *>(utf16Data), ut… in GetOrInternString()
496 auto hashcode = EcmaStringAccessor::ComputeHashcodeUtf16(u16Buffer.data(), utf16Len); in GetOrInternStringWithSpaceTypeWithoutJSHandle()
Decma_string.h316 static uint32_t ComputeHashcodeUtf16(const uint16_t *utf16Data, uint32_t length);
1326 static uint32_t ComputeHashcodeUtf16(const uint16_t *utf16Data, uint32_t length) in ComputeHashcodeUtf16() function
1328 return EcmaString::ComputeHashcodeUtf16(utf16Data, length); in ComputeHashcodeUtf16()
Decma_string.cpp834 uint32_t EcmaString::ComputeHashcodeUtf16(const uint16_t *utf16Data, uint32_t length) in ComputeHashcodeUtf16() function in panda::ecmascript::EcmaString
Dobject_factory.cpp4162 …uint32_t hashCode = EcmaStringAccessor::ComputeHashcodeUtf16(const_cast<uint16_t *>(utf16Data), ut… in NewFromUtf16WithoutStringTable()
4211 …uint32_t hashCode = EcmaStringAccessor::ComputeHashcodeUtf16(const_cast<uint16_t *>(utf16Data), ut… in NewFromUtf16WithoutStringTable()
/arkcompiler/runtime_core/static_core/runtime/
Dstring_table.cpp109 …uint32_t hashCode = coretypes::String::ComputeHashcodeUtf16(const_cast<uint16_t *>(utf16Data), utf… in GetString()
/arkcompiler/runtime_core/static_core/runtime/tests/
Dstring_test.cpp237 auto rawHashCode = String::ComputeHashcodeUtf16(data.data(), data.size()); in TEST_F()
247 auto rawHashCode = String::ComputeHashcodeUtf16(data.data(), data.size()); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/tests/
Decma_string_accessor_test.cpp787 HWTEST_F_L0(EcmaStringAccessorTest, ComputeHashcodeUtf16) in HWTEST_F_L0() argument
795 EXPECT_EQ(EcmaStringAccessor::ComputeHashcodeUtf16(&arrayU16[0], lengthEcmaStrU16), hashExpect); in HWTEST_F_L0()
Decma_string_test.cpp1431 HWTEST_F_L0(EcmaStringTest, ComputeHashcodeUtf16) in HWTEST_F_L0() argument
1439 EXPECT_EQ(EcmaString::ComputeHashcodeUtf16(&arrayU16[0], lengthEcmaStrU16), hashExpect); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Dstring.cpp876 uint32_t String::ComputeHashcodeUtf16(const uint16_t *utf16Data, uint32_t length) in ComputeHashcodeUtf16() function in ark::coretypes::String