Searched refs:cpq_ (Results 1 – 1 of 1) sorted by relevance
82 cpq_.reset(new CuckooPathQueue()); in Clear()298 cpq_->reset(); in CuckooInsert()300 cpq_->push_back({b1, 1, 0, 0}); // Note depth starts at 1. in CuckooInsert()301 cpq_->push_back({b2, 1, 0, 0}); in CuckooInsert()303 while (!cpq_->empty()) { in CuckooInsert()304 CuckooPathEntry e = cpq_->pop_front(); in CuckooInsert()333 cpq_->push_back({next_bucket, e.depth + 1, parent_index, slot}); in CuckooInsert()356 std::unique_ptr<CuckooPathQueue> cpq_; variable