Lines Matching refs:tableBuf_
36 tableBuf_ = std::make_unique<uint8_t[]>(tableSize_);
45 CHECK_TRUE(tableBuf_ == nullptr, 0, 1, "Hashtable not exist, fatal error!");
63 if (memcpy_s(newTable.get(), tableSize_, tableBuf_.get(), tableSize_) != 0) {
68 tableBuf_ = std::move(newTable);
83 Node *tableHead = reinterpret_cast<Node *>(tableBuf_.get());
121 if (tableBuf_ == nullptr) {
144 CHECK_TRUE(tableBuf_ == nullptr, 0, 1, "Hashtable not exist, fatal error!");
157 Node *tableHead = reinterpret_cast<Node *>(tableBuf_.get());
166 CHECK_TRUE(tableBuf_ == nullptr, false, 1, "Hashtable not exist, failed to find frame!");
185 Node *tableHead = reinterpret_cast<Node *>(tableBuf_.get());