Home | History | Annotate | Download | only in benchmarks

Lines Matching refs:state

48 void BM_atomic_empty(benchmark::State& state) {
49 while (state.KeepRunning()) {
55 static void BM_atomic_load_relaxed(benchmark::State& state) {
57 while (state.KeepRunning()) {
65 static void BM_atomic_load_acquire(benchmark::State& state) {
67 while (state.KeepRunning()) {
75 static void BM_atomic_store_release(benchmark::State& state) {
77 while (state.KeepRunning()) {
84 static void BM_atomic_store_seq_cst(benchmark::State& state) {
86 while (state.KeepRunning()) {
93 static void BM_atomic_fetch_add_relaxed(benchmark::State& state) {
95 while (state.KeepRunning()) {
103 static void BM_atomic_fetch_add_seq_cst(benchmark::State& state) {
105 while (state.KeepRunning()) {
116 static void BM_atomic_acquire_fence(benchmark::State& state) {
118 while (state.KeepRunning()) {
127 static void BM_atomic_seq_cst_fence(benchmark::State& state) {
129 while (state.KeepRunning()) {
140 static void BM_atomic_fetch_add_cs(benchmark::State& state) {
142 while (state.KeepRunning()) {