Home
last modified time | relevance | path

Searched refs:hashIndex (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dtagged_dictionary.cpp74 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetAllKeys() local
75 JSTaggedValue key = GetKey(hashIndex); in GetAllKeys()
77 PropertyAttributes attr = GetAttributes(hashIndex); in GetAllKeys()
94 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetAllKeysByFilter() local
95 JSTaggedValue key = GetKey(hashIndex); in GetAllKeysByFilter()
97 PropertyAttributes attr = GetAttributes(hashIndex); in GetAllKeysByFilter()
124 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetNumOfEnumKeys() local
125 JSTaggedValue key = GetKey(hashIndex); in GetNumOfEnumKeys()
127 PropertyAttributes attr = GetAttributes(hashIndex); in GetNumOfEnumKeys()
144 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetAllEnumKeys() local
[all …]
Dglobal_dictionary-inl.h108 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetAllKeys() local
109 JSTaggedValue key = GetKey(hashIndex); in GetAllKeys()
111 PropertyAttributes attr = GetAttributes(hashIndex); in GetAllKeys()
132 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetAllKeysByFilter() local
133 JSTaggedValue key = GetKey(hashIndex); in GetAllKeysByFilter()
135 PropertyAttributes attr = GetAttributes(hashIndex); in GetAllKeysByFilter()
163 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetNumOfEnumKeys() local
164 JSTaggedValue key = GetKey(hashIndex); in GetNumOfEnumKeys()
166 PropertyAttributes attr = GetAttributes(hashIndex); in GetNumOfEnumKeys()
186 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetEnumAllKeys() local
[all …]
Dtagged_hash_table.h200 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in GetAllKeys() local
201 JSTaggedValue key = GetKey(hashIndex); in GetAllKeys()
212 for (int hashIndex = 0; hashIndex < capacity; hashIndex++) { in GetAllKeysIntoVector() local
213 JSTaggedValue key = GetKey(hashIndex); in GetAllKeysIntoVector()
Ddump.cpp1337 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in Dump() local
1338 JSTaggedValue key(GetKey(hashIndex)); in Dump()
1340 JSTaggedValue val(GetValue(hashIndex)); in Dump()
1345 DumpAttr(GetAttributes(hashIndex), false, os); in Dump()
1355 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in Dump() local
1356 JSTaggedValue key(GetKey(hashIndex)); in Dump()
1358 JSTaggedValue val(GetValue(hashIndex)); in Dump()
1364 DumpAttr(GetAttributes(hashIndex), false, os); in Dump()
1374 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in Dump() local
1375 JSTaggedValue key(GetKey(hashIndex)); in Dump()
[all …]
Djs_object.cpp251 for (uint32_t hashIndex = 0; hashIndex < size; hashIndex++) { in ShouldOptimizeAsFastElements() local
252 JSTaggedValue key = elements->GetKey(hashIndex); in ShouldOptimizeAsFastElements()
256 PropertyAttributes attr = elements->GetAttributes(hashIndex); in ShouldOptimizeAsFastElements()
273 for (uint32_t hashIndex = 0; hashIndex < size; hashIndex++) { in TryOptimizeAsFastElements() local
274 JSTaggedValue key = elements->GetKey(hashIndex); in TryOptimizeAsFastElements()
275 JSTaggedValue value = elements->GetValue(hashIndex); in TryOptimizeAsFastElements()
/arkcompiler/ets_runtime/ecmascript/base/
Dfast_json_stringifier.cpp426 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in TryCacheSerializeElements() local
427 JSTaggedValue key = numberDic->GetKey(hashIndex); in TryCacheSerializeElements()
429 PropertyAttributes attr = numberDic->GetAttributes(hashIndex); in TryCacheSerializeElements()
561 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in TryCacheSerializeKeys() local
562 JSTaggedValue key = globalDic->GetKey(hashIndex); in TryCacheSerializeKeys()
566 PropertyAttributes attr = globalDic->GetAttributes(hashIndex); in TryCacheSerializeKeys()
593 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in TryCacheSerializeKeys() local
594 JSTaggedValue key = nameDic->GetKey(hashIndex); in TryCacheSerializeKeys()
598 PropertyAttributes attr = nameDic->GetAttributes(hashIndex); in TryCacheSerializeKeys()
745 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in DefaultSerializeElements() local
[all …]
Djson_stringifier.cpp608 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in SerializeElements() local
609 JSTaggedValue key = numberDic->GetKey(hashIndex); in SerializeElements()
611 PropertyAttributes attr = numberDic->GetAttributes(hashIndex); in SerializeElements()
742 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in SerializeKeys() local
743 JSTaggedValue key = globalDic->GetKey(hashIndex); in SerializeKeys()
747 PropertyAttributes attr = globalDic->GetAttributes(hashIndex); in SerializeKeys()
777 for (int hashIndex = 0; hashIndex < size; hashIndex++) { in SerializeKeys() local
778 JSTaggedValue key = nameDic->GetKey(hashIndex); in SerializeKeys()
782 PropertyAttributes attr = nameDic->GetAttributes(hashIndex); in SerializeKeys()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Debo.h110 uint32 hashIndex = 0; variable
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Debo.cpp435 insnInfo->hashIndex = hashVal; in HashInsn()
1172 SetInsnInfo(insnInfo->hashIndex, *(insnInfo->same)); in BackupInsnInfoList()