Searched refs:rawHashSeed (Results 1 - 2 of 2) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | ecma_string.cpp | 915 uint32_t EcmaString::ComputeHashcode(uint32_t rawHashSeed, bool isInteger) const in ComputeHashcode() argument 920 return MixHashcode(rawHashSeed, isInteger); in ComputeHashcode() 925 if ((rawHashSeed == 0 || isInteger) && in ComputeHashcode() 926 length < MAX_ELEMENT_INDEX_LEN && this->HashIntegerString(length, &hash, rawHashSeed)) { in ComputeHashcode() 932 hash = this->ComputeHashForData(data, length, rawHashSeed); in ComputeHashcode() 939 hash = this->ComputeHashForData(data, length, rawHashSeed); in ComputeHashcode()
|
H A D | ecma_string.h | 321 uint32_t PUBLIC_API ComputeHashcode(uint32_t rawHashSeed, bool isInteger) const; 1334 uint32_t ComputeHashcode(uint32_t rawHashSeed, bool isInteger) in ComputeHashcode() argument 1336 return string_->ComputeHashcode(rawHashSeed, isInteger); in ComputeHashcode()
|
Completed in 6 milliseconds