Lines Matching refs:iter_count
100 benchmark::IterationCount iter_count = 0; in BM_KeepRunning() local
101 assert(iter_count == state.iterations()); in BM_KeepRunning()
103 ++iter_count; in BM_KeepRunning()
105 assert(iter_count == state.iterations()); in BM_KeepRunning()
117 benchmark::IterationCount iter_count = 0; in BM_KeepRunningBatch() local
119 iter_count += batch_size; in BM_KeepRunningBatch()
121 assert(state.iterations() == iter_count); in BM_KeepRunningBatch()
125 assert(iter_count == batch_size // max_iterations == 1 in BM_KeepRunningBatch()
126 || iter_count > prior_iter_count); // max_iterations > batch_size in BM_KeepRunningBatch()
127 prior_iter_count = iter_count; in BM_KeepRunningBatch()
136 benchmark::IterationCount iter_count = 0; in BM_RangedFor() local
138 ++iter_count; in BM_RangedFor()
140 assert(iter_count == state.max_iterations); in BM_RangedFor()