Searched refs:tableBuf_ (Results 1 – 2 of 2) sorted by relevance
33 tableBuf_ = std::make_unique<uint8_t[]>(tableSize_); in Init()42 if (tableBuf_ == nullptr) { in Resize()63 if (memcpy_s(newTable.get(), tableSize_, tableBuf_.get(), tableSize_) != 0) { in Resize()68 tableBuf_ = std::move(newTable); in Resize()83 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in PutIpInSlot()119 if (tableBuf_ == nullptr) { in PutIpsInTable()144 if (tableBuf_ == nullptr) { in GetWriteSize()160 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in GetFrame()172 if (tableBuf_ == nullptr) { in GetIpsByStackId()194 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in ImportNode()
91 tableBuf_ = nullptr; in ~UniqueStackTable()118 return reinterpret_cast<Node *>(tableBuf_.get()); in GetHeadNode()126 std::unique_ptr<uint8_t[]> tableBuf_ = nullptr; variable