Home
last modified time | relevance | path

Searched refs:ComputeHashcode (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
Dstring.h224 hashcode_ = ComputeHashcode(); in GetHashcode()
332 uint32_t ComputeHashcode();
/arkcompiler/ets_runtime/ecmascript/
Decma_string.h239 hashcode = ComputeHashcode(); in GetHashcode()
307 uint32_t PUBLIC_API ComputeHashcode() const;
309 uint32_t PUBLIC_API ComputeHashcode(uint32_t rawHashSeed, bool isInteger) const;
1286 uint32_t ComputeHashcode() in ComputeHashcode() function
1288 return string_->ComputeHashcode(); in ComputeHashcode()
1291 uint32_t ComputeHashcode(uint32_t rawHashSeed, bool isInteger) in ComputeHashcode() function
1293 return string_->ComputeHashcode(rawHashSeed, isInteger); in ComputeHashcode()
Decma_string_table.cpp35 hashCode = EcmaStringAccessor(secondString).ComputeHashcode(hashCode, isInteger); in GetString()
Decma_string.cpp685 uint32_t EcmaString::ComputeHashcode() const in ComputeHashcode() function in panda::ecmascript::EcmaString
721 uint32_t EcmaString::ComputeHashcode(uint32_t rawHashSeed, bool isInteger) const in ComputeHashcode() function in panda::ecmascript::EcmaString
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Dstring.cpp820 uint32_t String::ComputeHashcode() in ComputeHashcode() function in panda::coretypes::String
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h156 V(ComputeHashcode) \
Druntime_stubs.cpp198 DEF_RUNTIME_STUBS(ComputeHashcode) in DEF_RUNTIME_STUBS() argument
202 uint32_t result = EcmaStringAccessor(string).ComputeHashcode(); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dmcr_circuit_builder.cpp1086 …CallRuntime(glue, RTSTUB_ID(ComputeHashcode), Gate::InvalidGateRef, { value }, Circuit::NullGate()… in GetHashcodeFromString()