HomeSort by relevance Sort by last modified time
    Searched refs:input_queue_length_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
optimizing-compiler-thread.cc 19 DCHECK_EQ(0, input_queue_length_);
89 if (input_queue_length_ == 0) return NULL;
93 input_queue_length_--;
194 // There is no need for a mutex when reading input_queue_length_.
195 while (input_queue_length_ > 0) CompileNext();
265 DCHECK_LT(input_queue_length_, input_queue_capacity_);
269 input_queue_length_++;
273 DCHECK_LT(input_queue_length_, input_queue_capacity_);
274 input_queue_[InputQueueIndex(input_queue_length_)] = job;
275 input_queue_length_++
    [all...]
optimizing-compiler-thread.h 34 input_queue_length_(0),
67 return input_queue_length_ < input_queue_capacity_;
118 int input_queue_length_; member in class:v8::internal::OptimizingCompilerThread

Completed in 429 milliseconds