Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/rawheap_translate/
Drawheap_translate.h42 Node(uint32_t nodeIndex) in Node()
44 index(nodeIndex), in Node()
Drawheap_translate.cpp273 static uint32_t nodeIndex = 1; in CreateNode() local
274 auto node = std::make_shared<Node>(Node(nodeIndex++)); in CreateNode()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_snapshot.h311 TraceNode(TraceTree* tree, uint32_t nodeIndex);
316 TraceNode* FindChild(uint32_t nodeIndex);
317 TraceNode* FindOrAddChild(uint32_t nodeIndex);
Dheap_snapshot.cpp782 TraceNode::TraceNode(TraceTree* tree, uint32_t nodeIndex) in TraceNode() argument
784 nodeIndex_(nodeIndex), in TraceNode()
813 TraceNode* TraceNode::FindOrAddChild(uint32_t nodeIndex) in FindOrAddChild() argument
815 TraceNode* child = FindChild(nodeIndex); in FindOrAddChild()
817 child = new TraceNode(tree_, nodeIndex); in FindOrAddChild()
823 TraceNode* TraceNode::FindChild(uint32_t nodeIndex) in FindChild() argument
826 if (node->GetNodeIndex() == nodeIndex) { in FindChild()
/arkcompiler/ets_runtime/ecmascript/tests/
Dtagged_hash_array_test.cpp546 uint32_t nodeIndex = static_cast<uint32_t>(numOfElement - 1) & keyHash; in HWTEST_F_L0() local
548 TaggedHashArray::GetCurrentNode(thread, taggedQueue, taggedHashArray, nodeIndex); in HWTEST_F_L0()
Dtagged_tree_test.cpp79 bool IsVaildRBTree(JSThread *thread, JSHandle<T> &tree, int nodeIndex) in IsVaildRBTree() argument
82 nodes.emplace(nodeIndex); in IsVaildRBTree()