Searched refs:ComputeHashForData (Results 1 – 4 of 4) sorted by relevance
| /arkcompiler/runtime_core/static_core/runtime/coretypes/ |
| D | string.cpp | 794 static int32_t ComputeHashForData(const T *data, size_t size) in ComputeHashForData() function 825 hash = static_cast<uint32_t>(ComputeHashForData(GetDataMUtf8(), GetLength())); in ComputeHashcode() 827 hash = static_cast<uint32_t>(ComputeHashForData(GetDataUtf16(), GetLength())); in ComputeHashcode() 831 hash = static_cast<uint32_t>(ComputeHashForData(GetDataUtf16(), GetLength())); in ComputeHashcode() 854 hash = static_cast<uint32_t>(ComputeHashForData(tmpBuffer, utf16Length)); in ComputeHashcodeMutf8() 863 return ComputeHashForData(utf16Data, length); in ComputeHashcodeUtf16()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | ecma_string.cpp | 708 hash = this->ComputeHashForData(data, length, 0); in ComputeRawHashcode() 715 hash = this->ComputeHashForData(data, length, 0); in ComputeRawHashcode() 738 hash = this->ComputeHashForData(data, length, rawHashSeed); in ComputeHashcode() 745 hash = this->ComputeHashForData(data, length, rawHashSeed); in ComputeHashcode() 759 uint32_t hash = ComputeHashForData(utf8Data, utf8Len, 0); in ComputeHashcodeUtf8() 767 uint32_t hash = ComputeHashForData(tmpBuffer.data(), utf16Len, 0); in ComputeHashcodeUtf8() 782 uint32_t hash = ComputeHashForData(utf16Data, length, 0); in ComputeHashcodeUtf16()
|
| D | tagged_dictionary.cpp | 44 uint32_t hash = EcmaString::ComputeHashForData(str, strSize, 0); in Hash()
|
| D | ecma_string.h | 657 static uint32_t ComputeHashForData(const T *data, size_t size, uint32_t hashSeed) in ComputeHashForData() function
|