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

  /external/tensorflow/tensorflow/core/lib/core/
blocking_counter.h 28 BlockingCounter(int initial_count)
29 : state_(initial_count << 1), notified_(false) {
30 CHECK_GE(initial_count, 0);
31 DCHECK_EQ((initial_count << 1) >> 1, initial_count);
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 573 explicit BlockingCounter(int initial_count) :
574 count_(initial_count) {}
  /external/gemmlowp/internal/
multi_thread_gemm.h 162 // Sets/resets the counter; initial_count is the number of
164 void Reset(std::size_t initial_count) {
167 initial_count_ = initial_count;
  /external/tensorflow/tensorflow/core/common_runtime/
executor.cc 586 size_t initial_count; local
597 initial_count = 1 + (num_control_edges << 1);
599 initial_count = num_in_edges;
602 *max_pending = initial_count;
    [all...]
  /external/flatbuffers/src/
idl_parser.cpp     [all...]

Completed in 416 milliseconds