Lines Matching refs:state
25 static void BM_pthread_self(benchmark::State& state) { in BM_pthread_self() argument
26 while (state.KeepRunning()) { in BM_pthread_self()
32 static void BM_pthread_getspecific(benchmark::State& state) { in BM_pthread_getspecific() argument
36 while (state.KeepRunning()) { in BM_pthread_getspecific()
44 static void BM_pthread_setspecific(benchmark::State& state) { in BM_pthread_setspecific() argument
48 while (state.KeepRunning()) { in BM_pthread_setspecific()
58 static void BM_pthread_once(benchmark::State& state) { in BM_pthread_once() argument
62 while (state.KeepRunning()) { in BM_pthread_once()
68 static void BM_pthread_mutex_lock(benchmark::State& state) { in BM_pthread_mutex_lock() argument
71 while (state.KeepRunning()) { in BM_pthread_mutex_lock()
79 static void BM_pthread_mutex_lock_ERRORCHECK(benchmark::State& state) { in BM_pthread_mutex_lock_ERRORCHECK() argument
82 while (state.KeepRunning()) { in BM_pthread_mutex_lock_ERRORCHECK()
91 static void BM_pthread_mutex_lock_RECURSIVE(benchmark::State& state) { in BM_pthread_mutex_lock_RECURSIVE() argument
94 while (state.KeepRunning()) { in BM_pthread_mutex_lock_RECURSIVE()
121 static void BM_pthread_mutex_lock_PI(benchmark::State& state) { in BM_pthread_mutex_lock_PI() argument
124 while (state.KeepRunning()) { in BM_pthread_mutex_lock_PI()
131 static void BM_pthread_mutex_lock_ERRORCHECK_PI(benchmark::State& state) { in BM_pthread_mutex_lock_ERRORCHECK_PI() argument
134 while (state.KeepRunning()) { in BM_pthread_mutex_lock_ERRORCHECK_PI()
141 static void BM_pthread_mutex_lock_RECURSIVE_PI(benchmark::State& state) { in BM_pthread_mutex_lock_RECURSIVE_PI() argument
144 while (state.KeepRunning()) { in BM_pthread_mutex_lock_RECURSIVE_PI()
151 static void BM_pthread_rwlock_read(benchmark::State& state) { in BM_pthread_rwlock_read() argument
155 while (state.KeepRunning()) { in BM_pthread_rwlock_read()
164 static void BM_pthread_rwlock_write(benchmark::State& state) { in BM_pthread_rwlock_write() argument
168 while (state.KeepRunning()) { in BM_pthread_rwlock_write()
181 static void BM_pthread_create(benchmark::State& state) { in BM_pthread_create() argument
182 while (state.KeepRunning()) { in BM_pthread_create()
185 state.PauseTiming(); in BM_pthread_create()
187 state.ResumeTiming(); in BM_pthread_create()
196 static void BM_pthread_create_and_run(benchmark::State& state) { in BM_pthread_create_and_run() argument
197 while (state.KeepRunning()) { in BM_pthread_create_and_run()
199 pthread_create(&thread, nullptr, RunThread, &state); in BM_pthread_create_and_run()
209 static void BM_pthread_exit_and_join(benchmark::State& state) { in BM_pthread_exit_and_join() argument
210 while (state.KeepRunning()) { in BM_pthread_exit_and_join()
218 static void BM_pthread_key_create(benchmark::State& state) { in BM_pthread_key_create() argument
219 while (state.KeepRunning()) { in BM_pthread_key_create()
223 state.PauseTiming(); in BM_pthread_key_create()
225 state.ResumeTiming(); in BM_pthread_key_create()
230 static void BM_pthread_key_delete(benchmark::State& state) { in BM_pthread_key_delete() argument
231 while (state.KeepRunning()) { in BM_pthread_key_delete()
232 state.PauseTiming(); in BM_pthread_key_delete()
235 state.ResumeTiming(); in BM_pthread_key_delete()