HomeSort by: relevance | last modified time | path
    Searched refs:total_iterations_ (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark.cc 127 : total_iterations_(0),
189 total_iterations_ = 0;
205 total_iterations_ = error_occurred_ ? 0 : max_iterations;
216 total_iterations_ = 0;
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h 634 return max_iterations - total_iterations_ + batch_leftover_;
639 // When total_iterations_ is 0, KeepRunning() and friends will return false.
641 size_t total_iterations_; member in class:benchmark::internal::State
695 // total_iterations_ is set to 0 by the constructor, and always set to a
700 if (BENCHMARK_BUILTIN_EXPECT(total_iterations_ >= n, true)) {
701 total_iterations_ -= n;
706 if (!error_occurred_ && total_iterations_ >= n) {
707 total_iterations_ -= n;
711 // For non-batch runs, total_iterations_ must be 0 by now.
712 if (is_batch && total_iterations_ != 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/
benchmark.h 593 return max_iterations - total_iterations_ + batch_leftover_;
598 // When total_iterations_ is 0, KeepRunning() and friends will return false.
600 size_t total_iterations_; member in class:benchmark::State
660 // total_iterations_ is set to 0 by the constructor, and always set to a
665 if (BENCHMARK_BUILTIN_EXPECT(total_iterations_ >= n, true)) {
666 total_iterations_ -= n;
671 if (!error_occurred_ && total_iterations_ >= n) {
672 total_iterations_-= n;
676 // For non-batch runs, total_iterations_ must be 0 by now.
677 if (is_batch && total_iterations_ != 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark.cc 296 : total_iterations_(0),
354 total_iterations_ = 0;
370 total_iterations_ = error_occurred_ ? 0 : max_iterations;
381 total_iterations_ = 0;

Completed in 29 milliseconds