Searched refs:kMaxQueueSize (Results 1 – 4 of 4) sorted by relevance
176 static constexpr int kMaxQueueSize = 682; variable209 tail_ = (tail_ + 1) % kMaxQueueSize; in push_back()214 head_ = (head_ + 1) % kMaxQueueSize; in pop_front()220 bool full() const { return ((tail_ + 1) % kMaxQueueSize) == head_; } in full()225 CuckooPathEntry queue_[kMaxQueueSize];
105 if (queued_lines_.size() >= kMaxQueueSize) { in QueueLogLine()152 if (local_queue.size() >= kMaxQueueSize) { in ThreadMain()
31 static const size_t kMaxQueueSize = 250; variable
258 const int kMaxQueueSize = 91; in TEST_F() local259 for (int i = 0; i < kMaxQueueSize * 2; ++i) { in TEST_F()262 EXPECT_EQ(kMaxQueueSize, overuse_detector_->FramesInQueue()); in TEST_F()