Home
last modified time | relevance | path

Searched refs:nodeNum (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashset.cpp57 uint32_t nodeNum = hashSet->GetSize(); in Add() local
59 hashSet->SetSize(++nodeNum); in Add()
62 if (nodeNum > tableLength) { in Add()
90 uint32_t nodeNum = hashSet->GetSize(); in Remove() local
91 if (nodeNum == 0) { in Remove()
99 hashSet->SetSize(--nodeNum); in Remove()
Djs_api_hashmap.cpp121 uint32_t nodeNum = hashMap->GetSize(); in Set() local
123 hashMap->SetSize(++nodeNum); in Set()
126 if (nodeNum > tableLength) { in Set()
212 uint32_t nodeNum = hashMap->GetSize(); in Remove() local
213 if (nodeNum == 0) { in Remove()
221 hashMap->SetSize(--nodeNum); in Remove()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dinterference_graph.cpp230 auto edgePrinter = [this, &out, skipPhysical](auto nodeNum) { in Dump() argument
231 for (unsigned j = 0; j < nodeNum; j++) { in Dump()
232 bool check = !(skipPhysical && GetNode(j).IsPhysical()) && HasEdge(nodeNum, j); in Dump()
236 …if (GetNode(nodeNum).GetColor() == GetNode(j).GetColor() && GetNode(nodeNum).GetColor() != INVALID… in Dump()
239 out << nodeNum << "--" << j << "\n"; in Dump()