HomeSort by relevance Sort by last modified time
    Searched defs:kMaxQueueSize (Results 1 - 7 of 7) sorted by null

  /external/stressapptest/src/
logger.h 31 static const size_t kMaxQueueSize = 250;
94 // kMaxQueueSize.
142 // Lets the threads blocked on the queue having reached kMaxQueueSize know
  /external/webrtc/webrtc/video/
overuse_frame_detector_unittest.cc 258 const int kMaxQueueSize = 91;
259 for (int i = 0; i < kMaxQueueSize * 2; ++i) {
262 EXPECT_EQ(kMaxQueueSize, overuse_detector_->FramesInQueue());
  /device/generic/goldfish/camera/
EmulatedFakeCamera3.h 226 static const size_t kMaxQueueSize = 2;
EmulatedQemuCamera3.h 226 static const size_t kMaxQueueSize = 2;
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedFakeCamera3.h 228 static const size_t kMaxQueueSize = 2;
  /external/tensorflow/tensorflow/core/util/
presized_cuckoo_map.h 166 static constexpr int kMaxQueueSize = 682;
190 // The caller is responsible for not inserting more than kMaxQueueSize
199 tail_ = (tail_ + 1) % kMaxQueueSize;
204 head_ = (head_ + 1) % kMaxQueueSize;
210 bool full() const { return ((tail_ + 1) % kMaxQueueSize) == head_; }
215 CuckooPathEntry queue_[kMaxQueueSize];
  /frameworks/av/media/libstagefright/omx/
OMXNodeInstance.cpp 255 kMaxQueueSize = 12,
302 if (realTime || mQueue.size() >= kMaxQueueSize) {
    [all...]

Completed in 175 milliseconds