HomeSort by relevance Sort by last modified time
    Searched refs:kMaxQueueSize (Results 1 - 11 of 11) 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
logger.cc 105 if (queued_lines_.size() >= kMaxQueueSize) {
152 if (local_queue.size() >= kMaxQueueSize) {
  /external/tensorflow/tensorflow/core/util/
presized_cuckoo_map.h 176 static constexpr int kMaxQueueSize = 682;
200 // The caller is responsible for not inserting more than kMaxQueueSize
209 tail_ = (tail_ + 1) % kMaxQueueSize;
214 head_ = (head_ + 1) % kMaxQueueSize;
220 bool full() const { return ((tail_ + 1) % kMaxQueueSize) == head_; }
225 CuckooPathEntry queue_[kMaxQueueSize];
  /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;
EmulatedQemuCamera3.cpp     [all...]
EmulatedFakeCamera3.cpp     [all...]
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedFakeCamera3.h 228 static const size_t kMaxQueueSize = 2;
EmulatedFakeCamera3.cpp     [all...]
  /frameworks/av/media/libstagefright/omx/
OMXNodeInstance.cpp 257 kMaxQueueSize = 12,
304 if (realTime || mQueue.size() >= kMaxQueueSize) {
    [all...]

Completed in 263 milliseconds