Home
last modified time | relevance | path

Searched refs:max_iterations (Results 1 – 19 of 19) sorted by relevance

/external/google-benchmark/test/
Doptions_test.cc55 assert(state.max_iterations == 42); in BM_explicit_iteration_count()
59 assert(state.iterations() == state.max_iterations); in BM_explicit_iteration_count()
Dbasic_test.cc126 assert(iter_count == state.max_iterations); in BM_RangedFor()
Dskip_with_error_test.cc115 assert(state.max_iterations > 3 && "test requires at least a few iterations"); in BM_error_during_running_ranged_for()
/external/libcxx/utils/google-benchmark/test/
Doptions_test.cc55 assert(state.max_iterations == 42); in BM_explicit_iteration_count()
59 assert(state.iterations() == state.max_iterations); in BM_explicit_iteration_count()
Dbasic_test.cc126 assert(iter_count == state.max_iterations); in BM_RangedFor()
Dskip_with_error_test.cc115 assert(state.max_iterations > 3 && "test requires at least a few iterations"); in BM_error_during_running_ranged_for()
/external/tensorflow/tensorflow/core/grappler/inputs/
Dfile_input_yielder.cc36 size_t max_iterations) in FileInputYielder() argument
40 max_iterations_(max_iterations), in FileInputYielder()
Dfile_input_yielder.h41 size_t max_iterations = std::numeric_limits<size_t>::max());
/external/mesa3d/src/compiler/glsl/
Dloop_unroll.cpp469 const int max_iterations = options->MaxUnrollIterations; in visit_leave() local
473 if (iterations > max_iterations) in visit_leave()
481 count.nested_loop || count.nodes * iterations > max_iterations * 5; in visit_leave()
/external/google-benchmark/src/
Dbenchmark.cc129 max_iterations(max_iters), in State()
140 CHECK(max_iterations != 0) << "At least one iteration must be run"; in State()
205 total_iterations_ = error_occurred_ ? 0 : max_iterations; in StartKeepRunning()
Dbenchmark_runner.cc112 CHECK(st.iterations() >= st.max_iterations) in RunInThread()
/external/libcxx/utils/google-benchmark/src/
Dbenchmark.cc129 max_iterations(max_iters), in State()
140 CHECK(max_iterations != 0) << "At least one iteration must be run"; in State()
205 total_iterations_ = error_occurred_ ? 0 : max_iterations; in StartKeepRunning()
Dbenchmark_runner.cc112 CHECK(st.iterations() >= st.max_iterations) in RunInThread()
/external/adhd/cras/src/common/
Dcras_util.c228 const unsigned max_iterations = 4; in wait_for_dev_input_access() local
231 while (i < max_iterations) { in wait_for_dev_input_access()
/external/u-boot/drivers/pci/
Dpcie_imx.c101 u32 max_iterations = 10; in pcie_phy_poll_ack() local
113 } while (wait_counter < max_iterations); in pcie_phy_poll_ack()
/external/autotest/frontend/tko/
Drpc_interface.py171 max_iterations = max(all_iterations + [0])
176 for index in xrange(1, max_iterations + 1)]
/external/libcxx/utils/google-benchmark/include/benchmark/
Dbenchmark.h634 return max_iterations - total_iterations_ + batch_leftover_; in iterations()
649 const size_t max_iterations;
736 : cached_(st->error_occurred_ ? 0 : st->max_iterations), parent_(st) {} in StateIterator()
/external/google-benchmark/include/benchmark/
Dbenchmark.h634 return max_iterations - total_iterations_ + batch_leftover_; in iterations()
649 const size_t max_iterations;
736 : cached_(st->error_occurred_ ? 0 : st->max_iterations), parent_(st) {} in StateIterator()
/external/v8/src/heap/
Dmark-compact.cc1474 int max_iterations = FLAG_ephemeron_fixpoint_iterations; in ProcessEphemeronsUntilFixpoint() local
1479 if (iterations >= max_iterations) { in ProcessEphemeronsUntilFixpoint()