Home
last modified time | relevance | path

Searched refs:nodeIndex (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_snapshot.h291 TraceNode(TraceTree* tree, uint32_t nodeIndex);
296 TraceNode* FindChild(uint32_t nodeIndex);
297 TraceNode* FindOrAddChild(uint32_t nodeIndex);
Dheap_snapshot.cpp691 TraceNode::TraceNode(TraceTree* tree, uint32_t nodeIndex) in TraceNode() argument
693 nodeIndex_(nodeIndex), in TraceNode()
722 TraceNode* TraceNode::FindOrAddChild(uint32_t nodeIndex) in FindOrAddChild() argument
724 TraceNode* child = FindChild(nodeIndex); in FindOrAddChild()
726 child = new TraceNode(tree_, nodeIndex); in FindOrAddChild()
732 TraceNode* TraceNode::FindChild(uint32_t nodeIndex) in FindChild() argument
735 if (node->GetNodeIndex() == nodeIndex) { in FindChild()
/arkcompiler/ets_runtime/ecmascript/tests/
Dtagged_hash_array_test.cpp395 uint32_t nodeIndex = static_cast<uint32_t>(numOfElement - 1) & keyHash; in HWTEST_F_L0() local
397 TaggedHashArray::GetCurrentNode(thread, taggedQueue, taggedHashArray, nodeIndex); in HWTEST_F_L0()
Dtagged_tree_test.cpp134 bool IsVaildRBTree(JSThread *thread, JSHandle<T> &tree, int nodeIndex) in IsVaildRBTree() argument
137 nodes.emplace(nodeIndex); in IsVaildRBTree()