Lines Matching refs:Node
24 totalNodes_ = ((tableSize_ / sizeof(Node)) >> 1) << 1; // make it even. in Init()
72 totalNodes_ = ((newtableSize_ / sizeof(Node)) >> 1) << 1; // make it even. in Resize()
83 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in PutIpInSlot()
87 Node node; in PutIpInSlot()
92 Node* tableNode = reinterpret_cast<Node *>(tableHead_) + curIpIdx; in PutIpInSlot()
158 Node* UniqueStackTable::GetFrame(uint64_t stackId) in GetFrame()
160 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in GetFrame()
167 return (Node *)&tableHead_[stackId]; in GetFrame()
179 Node *node = GetFrame(tailIdx); in GetIpsByStackId()
192 bool UniqueStackTable::ImportNode(uint32_t index, const Node& node) in ImportNode()
194 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in ImportNode()