Home
last modified time | relevance | path

Searched refs:benchmark (Results 1 – 25 of 760) sorted by relevance

12345678910>>...31

/third_party/abseil-cpp/absl/time/
Dduration_benchmark.cc30 void BM_Duration_Factory_Nanoseconds(benchmark::State& state) { in BM_Duration_Factory_Nanoseconds()
33 benchmark::DoNotOptimize(absl::Nanoseconds(i)); in BM_Duration_Factory_Nanoseconds()
39 void BM_Duration_Factory_Microseconds(benchmark::State& state) { in BM_Duration_Factory_Microseconds()
42 benchmark::DoNotOptimize(absl::Microseconds(i)); in BM_Duration_Factory_Microseconds()
48 void BM_Duration_Factory_Milliseconds(benchmark::State& state) { in BM_Duration_Factory_Milliseconds()
51 benchmark::DoNotOptimize(absl::Milliseconds(i)); in BM_Duration_Factory_Milliseconds()
57 void BM_Duration_Factory_Seconds(benchmark::State& state) { in BM_Duration_Factory_Seconds()
60 benchmark::DoNotOptimize(absl::Seconds(i)); in BM_Duration_Factory_Seconds()
66 void BM_Duration_Factory_Minutes(benchmark::State& state) { in BM_Duration_Factory_Minutes()
69 benchmark::DoNotOptimize(absl::Minutes(i)); in BM_Duration_Factory_Minutes()
[all …]
Dtime_benchmark.cc37 void BM_Time_Arithmetic(benchmark::State& state) { in BM_Time_Arithmetic()
42 benchmark::DoNotOptimize(t += nano); in BM_Time_Arithmetic()
43 benchmark::DoNotOptimize(t -= sec); in BM_Time_Arithmetic()
52 void BM_Time_Difference(benchmark::State& state) { in BM_Time_Difference()
57 benchmark::DoNotOptimize(diff += end - start); in BM_Time_Difference()
72 void BM_Time_ToDateTime_Absl(benchmark::State& state) { in BM_Time_ToDateTime_Absl()
80 benchmark::DoNotOptimize(t.In(tz)); in BM_Time_ToDateTime_Absl()
85 void BM_Time_ToDateTime_Libc(benchmark::State& state) { in BM_Time_ToDateTime_Libc()
94 benchmark::DoNotOptimize(localtime_r(&t, &tm)); in BM_Time_ToDateTime_Libc()
96 benchmark::DoNotOptimize(localtime_s(&tm, &t)); in BM_Time_ToDateTime_Libc()
[all …]
Dcivil_time_benchmark.cc41 void BM_Difference_Days(benchmark::State& state) { in BM_Difference_Days()
46 benchmark::DoNotOptimize(n); in BM_Difference_Days()
51 void BM_Step_Days(benchmark::State& state) { in BM_Step_Days()
55 benchmark::DoNotOptimize(++c); in BM_Step_Days()
60 void BM_Format(benchmark::State& state) { in BM_Format()
64 benchmark::DoNotOptimize(s); in BM_Format()
69 void BM_Parse(benchmark::State& state) { in BM_Parse()
74 benchmark::DoNotOptimize(b); in BM_Parse()
79 void BM_RoundTripFormatParse(benchmark::State& state) { in BM_RoundTripFormatParse()
84 benchmark::DoNotOptimize(b); in BM_RoundTripFormatParse()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dduration_benchmark.cc35 void BM_Duration_Factory_Nanoseconds(benchmark::State& state) { in BM_Duration_Factory_Nanoseconds()
38 benchmark::DoNotOptimize(absl::Nanoseconds(i)); in BM_Duration_Factory_Nanoseconds()
44 void BM_Duration_Factory_Microseconds(benchmark::State& state) { in BM_Duration_Factory_Microseconds()
47 benchmark::DoNotOptimize(absl::Microseconds(i)); in BM_Duration_Factory_Microseconds()
53 void BM_Duration_Factory_Milliseconds(benchmark::State& state) { in BM_Duration_Factory_Milliseconds()
56 benchmark::DoNotOptimize(absl::Milliseconds(i)); in BM_Duration_Factory_Milliseconds()
62 void BM_Duration_Factory_Seconds(benchmark::State& state) { in BM_Duration_Factory_Seconds()
65 benchmark::DoNotOptimize(absl::Seconds(i)); in BM_Duration_Factory_Seconds()
71 void BM_Duration_Factory_Minutes(benchmark::State& state) { in BM_Duration_Factory_Minutes()
74 benchmark::DoNotOptimize(absl::Minutes(i)); in BM_Duration_Factory_Minutes()
[all …]
Dtime_benchmark.cc37 void BM_Time_Arithmetic(benchmark::State& state) { in BM_Time_Arithmetic()
42 benchmark::DoNotOptimize(t += nano); in BM_Time_Arithmetic()
43 benchmark::DoNotOptimize(t -= sec); in BM_Time_Arithmetic()
52 void BM_Time_Difference(benchmark::State& state) { in BM_Time_Difference()
57 benchmark::DoNotOptimize(diff += end - start); in BM_Time_Difference()
72 void BM_Time_ToDateTime_Absl(benchmark::State& state) { in BM_Time_ToDateTime_Absl()
80 benchmark::DoNotOptimize(t.In(tz)); in BM_Time_ToDateTime_Absl()
85 void BM_Time_ToDateTime_Libc(benchmark::State& state) { in BM_Time_ToDateTime_Libc()
94 benchmark::DoNotOptimize(localtime_r(&t, &tm)); in BM_Time_ToDateTime_Libc()
96 benchmark::DoNotOptimize(localtime_s(&tm, &t)); in BM_Time_ToDateTime_Libc()
[all …]
Dcivil_time_benchmark.cc41 void BM_Difference_Days(benchmark::State& state) { in BM_Difference_Days()
46 benchmark::DoNotOptimize(n); in BM_Difference_Days()
51 void BM_Step_Days(benchmark::State& state) { in BM_Step_Days()
55 benchmark::DoNotOptimize(++c); in BM_Step_Days()
60 void BM_Format(benchmark::State& state) { in BM_Format()
64 benchmark::DoNotOptimize(s); in BM_Format()
69 void BM_Parse(benchmark::State& state) { in BM_Parse()
74 benchmark::DoNotOptimize(b); in BM_Parse()
79 void BM_RoundTripFormatParse(benchmark::State& state) { in BM_RoundTripFormatParse()
84 benchmark::DoNotOptimize(b); in BM_RoundTripFormatParse()
[all …]
/third_party/abseil-cpp/absl/strings/
Dcharconv_benchmark.cc25 void BM_Strtod_Pi(benchmark::State& state) { in BM_Strtod_Pi()
28 benchmark::DoNotOptimize(pi); in BM_Strtod_Pi()
29 benchmark::DoNotOptimize(strtod(pi, nullptr)); in BM_Strtod_Pi()
34 void BM_Absl_Pi(benchmark::State& state) { in BM_Absl_Pi()
38 benchmark::DoNotOptimize(pi); in BM_Absl_Pi()
41 benchmark::DoNotOptimize(v); in BM_Absl_Pi()
46 void BM_Strtod_Pi_float(benchmark::State& state) { in BM_Strtod_Pi_float()
49 benchmark::DoNotOptimize(pi); in BM_Strtod_Pi_float()
50 benchmark::DoNotOptimize(strtof(pi, nullptr)); in BM_Strtod_Pi_float()
55 void BM_Absl_Pi_float(benchmark::State& state) { in BM_Absl_Pi_float()
[all …]
Dstring_view_benchmark.cc33 void BM_StringViewFromString(benchmark::State& state) { in BM_StringViewFromString()
42 benchmark::DoNotOptimize(ps); in BM_StringViewFromString()
43 benchmark::DoNotOptimize(psv); in BM_StringViewFromString()
46 benchmark::DoNotOptimize(sv); in BM_StringViewFromString()
59 void DoEqualityComparisons(benchmark::State& state, absl::string_view a, in DoEqualityComparisons()
62 benchmark::DoNotOptimize(a == b); in DoEqualityComparisons()
66 void BM_EqualIdentical(benchmark::State& state) { in BM_EqualIdentical()
72 void BM_EqualSame(benchmark::State& state) { in BM_EqualSame()
85 void BM_EqualDifferent(benchmark::State& state) { in BM_EqualDifferent()
104 void DoConstantSizeInlinedEqualityComparisons(benchmark::State& state, in DoConstantSizeInlinedEqualityComparisons()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dcharconv_benchmark.cc25 void BM_Strtod_Pi(benchmark::State& state) { in BM_Strtod_Pi()
28 benchmark::DoNotOptimize(pi); in BM_Strtod_Pi()
29 benchmark::DoNotOptimize(strtod(pi, nullptr)); in BM_Strtod_Pi()
34 void BM_Absl_Pi(benchmark::State& state) { in BM_Absl_Pi()
38 benchmark::DoNotOptimize(pi); in BM_Absl_Pi()
41 benchmark::DoNotOptimize(v); in BM_Absl_Pi()
46 void BM_Strtod_Pi_float(benchmark::State& state) { in BM_Strtod_Pi_float()
49 benchmark::DoNotOptimize(pi); in BM_Strtod_Pi_float()
50 benchmark::DoNotOptimize(strtof(pi, nullptr)); in BM_Strtod_Pi_float()
55 void BM_Absl_Pi_float(benchmark::State& state) { in BM_Absl_Pi_float()
[all …]
Dstring_view_benchmark.cc33 void BM_StringViewFromString(benchmark::State& state) { in BM_StringViewFromString()
42 benchmark::DoNotOptimize(ps); in BM_StringViewFromString()
43 benchmark::DoNotOptimize(psv); in BM_StringViewFromString()
46 benchmark::DoNotOptimize(sv); in BM_StringViewFromString()
59 void DoEqualityComparisons(benchmark::State& state, absl::string_view a, in DoEqualityComparisons()
62 benchmark::DoNotOptimize(a == b); in DoEqualityComparisons()
66 void BM_EqualIdentical(benchmark::State& state) { in BM_EqualIdentical()
72 void BM_EqualSame(benchmark::State& state) { in BM_EqualSame()
85 void BM_EqualDifferent(benchmark::State& state) { in BM_EqualDifferent()
104 void DoConstantSizeInlinedEqualityComparisons(benchmark::State& state, in DoConstantSizeInlinedEqualityComparisons()
[all …]
/third_party/benchmark/test/
Dstring_util_gtest.cc13 EXPECT_EQ(0ul, benchmark::stoul("0", &pos)); in TEST()
18 EXPECT_EQ(7ul, benchmark::stoul("7", &pos)); in TEST()
23 EXPECT_EQ(135ul, benchmark::stoul("135", &pos)); in TEST()
29 EXPECT_EQ(0xFFFFFFFFul, benchmark::stoul("4294967295", &pos)); in TEST()
36 benchmark::stoul("18446744073709551615", &pos)); in TEST()
42 EXPECT_EQ(10ul, benchmark::stoul("1010", &pos, 2)); in TEST()
47 EXPECT_EQ(520ul, benchmark::stoul("1010", &pos, 8)); in TEST()
52 EXPECT_EQ(1010ul, benchmark::stoul("1010", &pos, 10)); in TEST()
57 EXPECT_EQ(4112ul, benchmark::stoul("1010", &pos, 16)); in TEST()
62 EXPECT_EQ(0xBEEFul, benchmark::stoul("BEEF", &pos, 16)); in TEST()
[all …]
Dbasic_test.cc6 void BM_empty(benchmark::State& state) { in BM_empty()
8 benchmark::DoNotOptimize(state.iterations()); in BM_empty()
14 void BM_spin_empty(benchmark::State& state) { in BM_spin_empty()
17 benchmark::DoNotOptimize(x); in BM_spin_empty()
24 void BM_spin_pause_before(benchmark::State& state) { in BM_spin_pause_before()
26 benchmark::DoNotOptimize(i); in BM_spin_pause_before()
30 benchmark::DoNotOptimize(i); in BM_spin_pause_before()
37 void BM_spin_pause_during(benchmark::State& state) { in BM_spin_pause_during()
41 benchmark::DoNotOptimize(i); in BM_spin_pause_during()
45 benchmark::DoNotOptimize(i); in BM_spin_pause_during()
[all …]
/third_party/benchmark/bindings/python/google_benchmark/
Dexample.py26 import google_benchmark as benchmark namespace
30 @benchmark.register
36 @benchmark.register
41 @benchmark.register
53 @benchmark.register
62 @benchmark.register
73 @benchmark.register
95 @benchmark.register
96 @benchmark.option.measure_process_cpu_time()
97 @benchmark.option.use_real_time()
[all …]
/third_party/abseil-cpp/absl/strings/internal/
Dmemutil_benchmark.cc97 void BM_Memmem(benchmark::State& state) { in BM_Memmem()
99 benchmark::DoNotOptimize( in BM_Memmem()
106 void BM_MemmemMedium(benchmark::State& state) { in BM_MemmemMedium()
108 benchmark::DoNotOptimize( in BM_MemmemMedium()
115 void BM_MemmemPathological(benchmark::State& state) { in BM_MemmemPathological()
117 benchmark::DoNotOptimize(absl::strings_internal::memmem( in BM_MemmemPathological()
125 void BM_Memcasemem(benchmark::State& state) { in BM_Memcasemem()
127 benchmark::DoNotOptimize( in BM_Memcasemem()
134 void BM_MemcasememMedium(benchmark::State& state) { in BM_MemcasememMedium()
136 benchmark::DoNotOptimize( in BM_MemcasememMedium()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dmemutil_benchmark.cc97 void BM_Memmem(benchmark::State& state) { in BM_Memmem()
99 benchmark::DoNotOptimize( in BM_Memmem()
106 void BM_MemmemMedium(benchmark::State& state) { in BM_MemmemMedium()
108 benchmark::DoNotOptimize( in BM_MemmemMedium()
115 void BM_MemmemPathological(benchmark::State& state) { in BM_MemmemPathological()
117 benchmark::DoNotOptimize(absl::strings_internal::memmem( in BM_MemmemPathological()
125 void BM_Memcasemem(benchmark::State& state) { in BM_Memcasemem()
127 benchmark::DoNotOptimize( in BM_Memcasemem()
134 void BM_MemcasememMedium(benchmark::State& state) { in BM_MemcasememMedium()
136 benchmark::DoNotOptimize( in BM_MemcasememMedium()
[all …]
/third_party/boost/libs/heap/tools/
Dthroughput_benchmarks.cpp43 benchmark_functor benchmark(size); in run_benchmarks_immutable() local
44 double result = run_benchmark(benchmark); in run_benchmarks_immutable()
52 benchmark_functor benchmark(size); in run_benchmarks_immutable() local
53 double result = run_benchmark(benchmark); in run_benchmarks_immutable()
61 benchmark_functor benchmark(size); in run_benchmarks_immutable() local
62 double result = run_benchmark(benchmark); in run_benchmarks_immutable()
70 benchmark_functor benchmark(size); in run_benchmarks_immutable() local
71 double result = run_benchmark(benchmark); in run_benchmarks_immutable()
79 benchmark_functor benchmark(size); in run_benchmarks_immutable() local
80 double result = run_benchmark(benchmark); in run_benchmarks_immutable()
[all …]
/third_party/re2/re2/testing/
Dregexp_benchmark.cc128 typedef void SearchImpl(benchmark::State& state, const char* regexp,
136 typedef void ParseImpl(benchmark::State& state, const char* regexp,
170 void Search(benchmark::State& state, const char* regexp, SearchImpl* search) { in Search()
200 void Search_Easy0_CachedDFA(benchmark::State& state) { Search(state, EASY0, SearchCachedDFA); } in Search_Easy0_CachedDFA()
201 void Search_Easy0_CachedNFA(benchmark::State& state) { Search(state, EASY0, SearchCachedNFA); } in Search_Easy0_CachedNFA()
202 void Search_Easy0_CachedPCRE(benchmark::State& state) { Search(state, EASY0, SearchCachedPCRE); } in Search_Easy0_CachedPCRE()
203 void Search_Easy0_CachedRE2(benchmark::State& state) { Search(state, EASY0, SearchCachedRE2); } in Search_Easy0_CachedRE2()
212 void Search_Easy1_CachedDFA(benchmark::State& state) { Search(state, EASY1, SearchCachedDFA); } in Search_Easy1_CachedDFA()
213 void Search_Easy1_CachedNFA(benchmark::State& state) { Search(state, EASY1, SearchCachedNFA); } in Search_Easy1_CachedNFA()
214 void Search_Easy1_CachedPCRE(benchmark::State& state) { Search(state, EASY1, SearchCachedPCRE); } in Search_Easy1_CachedPCRE()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dinlined_vector_benchmark.cc27 void BM_InlinedVectorFill(benchmark::State& state) { in BM_InlinedVectorFill()
36 benchmark::DoNotOptimize(v); in BM_InlinedVectorFill()
41 void BM_InlinedVectorFillRange(benchmark::State& state) { in BM_InlinedVectorFillRange()
47 benchmark::DoNotOptimize(src); in BM_InlinedVectorFillRange()
49 benchmark::DoNotOptimize(v); in BM_InlinedVectorFillRange()
54 void BM_StdVectorFill(benchmark::State& state) { in BM_StdVectorFill()
63 benchmark::DoNotOptimize(v); in BM_StdVectorFill()
90 void BM_InlinedVectorFillString(benchmark::State& state) { in BM_InlinedVectorFillString()
106 void BM_StdVectorFillString(benchmark::State& state) { in BM_StdVectorFillString()
129 void BM_InlinedVectorAssignments(benchmark::State& state) { in BM_InlinedVectorAssignments()
[all …]
/third_party/protobuf/benchmarks/
DMakefile.am94 cd $(top_srcdir) && git submodule update --init -r third_party/benchmark && \
95 cd third_party/benchmark && cmake -DCMAKE_BUILD_TYPE=Release && make
99 $(top_srcdir)/third_party/benchmark/src/libbenchmark.a: initialize_submodule
103 bin_PROGRAMS = cpp-benchmark
105 cpp_benchmark_LDADD = $(top_srcdir)/src/libprotobuf.la $(top_srcdir)/third_party/benchmark/src/libb…
107 cpp_benchmark_CPPFLAGS = -I$(top_srcdir)/src -I$(srcdir)/cpp -I$(top_srcdir)/third_party/benchmark/…
111 …oto2_header) $(top_srcdir)/src/libprotobuf.la $(top_srcdir)/third_party/benchmark/src/libbenchmark…
112benchmark-cpp_benchmark.$(OBJEXT): $(benchmarks_protoc_outputs) $(benchmarks_protoc_outputs_proto2…
119 cpp: protoc_middleman protoc_middleman2 cpp-benchmark initialize_submodule
120 ./cpp-benchmark $(all_data)
[all …]
/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dcctz_benchmark.cc32 void BM_Difference_Days(benchmark::State& state) { in BM_Difference_Days()
36 benchmark::DoNotOptimize(c - epoch); in BM_Difference_Days()
41 void BM_Step_Days(benchmark::State& state) { in BM_Step_Days()
45 benchmark::DoNotOptimize(++c); in BM_Step_Days()
50 void BM_GetWeekday(benchmark::State& state) { in BM_GetWeekday()
53 benchmark::DoNotOptimize(cctz::get_weekday(c)); in BM_GetWeekday()
58 void BM_NextWeekday(benchmark::State& state) { in BM_NextWeekday()
72 benchmark::DoNotOptimize(cctz::next_weekday(from, to)); in BM_NextWeekday()
79 void BM_PrevWeekday(benchmark::State& state) { in BM_PrevWeekday()
93 benchmark::DoNotOptimize(cctz::prev_weekday(from, to)); in BM_PrevWeekday()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dcctz_benchmark.cc32 void BM_Difference_Days(benchmark::State& state) { in BM_Difference_Days()
36 benchmark::DoNotOptimize(c - epoch); in BM_Difference_Days()
41 void BM_Step_Days(benchmark::State& state) { in BM_Step_Days()
45 benchmark::DoNotOptimize(++c); in BM_Step_Days()
50 void BM_GetWeekday(benchmark::State& state) { in BM_GetWeekday()
53 benchmark::DoNotOptimize(cctz::get_weekday(c)); in BM_GetWeekday()
58 void BM_NextWeekday(benchmark::State& state) { in BM_NextWeekday()
72 benchmark::DoNotOptimize(cctz::next_weekday(from, to)); in BM_NextWeekday()
79 void BM_PrevWeekday(benchmark::State& state) { in BM_PrevWeekday()
93 benchmark::DoNotOptimize(cctz::prev_weekday(from, to)); in BM_PrevWeekday()
[all …]
/third_party/boost/libs/numeric/ublas/benchmarks/opencl/
Dbenchmark.hpp17 namespace boost { namespace numeric { namespace ublas { namespace benchmark { namespace
91 template <typename S, bool> class benchmark;
94 class benchmark<R(O), true> : public base, public ublas::benchmark::benchmark class
97 benchmark(std::string const &name) in benchmark() function in boost::numeric::ublas::benchmark::opencl::benchmark
99 ublas::benchmark::benchmark(name + " with copy") in benchmark()
112 class benchmark<R(O1, O2), true> : public base, public ublas::benchmark::benchmark class
115 benchmark(std::string const &name) in benchmark() function in boost::numeric::ublas::benchmark::opencl::benchmark
117 ublas::benchmark::benchmark(name + " with copy") in benchmark()
133 class benchmark<R(O1, O2, O3), true> : public base, public ublas::benchmark::benchmark class
136 benchmark(std::string const &name) in benchmark() function in boost::numeric::ublas::benchmark::opencl::benchmark
[all …]
/third_party/abseil-cpp/absl/container/
Dinlined_vector_benchmark.cc27 void BM_InlinedVectorFill(benchmark::State& state) { in BM_InlinedVectorFill()
36 benchmark::DoNotOptimize(v); in BM_InlinedVectorFill()
41 void BM_InlinedVectorFillRange(benchmark::State& state) { in BM_InlinedVectorFillRange()
47 benchmark::DoNotOptimize(src); in BM_InlinedVectorFillRange()
49 benchmark::DoNotOptimize(v); in BM_InlinedVectorFillRange()
54 void BM_StdVectorFill(benchmark::State& state) { in BM_StdVectorFill()
63 benchmark::DoNotOptimize(v); in BM_StdVectorFill()
90 void BM_InlinedVectorFillString(benchmark::State& state) { in BM_InlinedVectorFillString()
106 void BM_StdVectorFillString(benchmark::State& state) { in BM_StdVectorFillString()
129 void BM_InlinedVectorAssignments(benchmark::State& state) { in BM_InlinedVectorAssignments()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/functional/
Dfunction_ref_benchmark.cc28 void FreeFunction() { benchmark::DoNotOptimize(dummy); } in FreeFunction()
31 void operator()() const { benchmark::DoNotOptimize(dummy); } in operator ()()
35 void operator()() const { benchmark::DoNotOptimize(this); } in operator ()()
45 void ConstructAndCallFunctionBenchmark(benchmark::State& state, in ConstructAndCallFunctionBenchmark()
52 void BM_TrivialStdFunction(benchmark::State& state) { in BM_TrivialStdFunction()
58 void BM_TrivialFunctionRef(benchmark::State& state) { in BM_TrivialFunctionRef()
64 void BM_LargeStdFunction(benchmark::State& state) { in BM_LargeStdFunction()
70 void BM_LargeFunctionRef(benchmark::State& state) { in BM_LargeFunctionRef()
75 void BM_FunPtrStdFunction(benchmark::State& state) { in BM_FunPtrStdFunction()
80 void BM_FunPtrFunctionRef(benchmark::State& state) { in BM_FunPtrFunctionRef()
[all …]
/third_party/abseil-cpp/absl/functional/
Dfunction_ref_benchmark.cc28 void FreeFunction() { benchmark::DoNotOptimize(dummy); } in FreeFunction()
31 void operator()() const { benchmark::DoNotOptimize(dummy); } in operator ()()
35 void operator()() const { benchmark::DoNotOptimize(this); } in operator ()()
45 void ConstructAndCallFunctionBenchmark(benchmark::State& state, in ConstructAndCallFunctionBenchmark()
52 void BM_TrivialStdFunction(benchmark::State& state) { in BM_TrivialStdFunction()
58 void BM_TrivialFunctionRef(benchmark::State& state) { in BM_TrivialFunctionRef()
64 void BM_LargeStdFunction(benchmark::State& state) { in BM_LargeStdFunction()
70 void BM_LargeFunctionRef(benchmark::State& state) { in BM_LargeFunctionRef()
75 void BM_FunPtrStdFunction(benchmark::State& state) { in BM_FunPtrStdFunction()
80 void BM_FunPtrFunctionRef(benchmark::State& state) { in BM_FunPtrFunctionRef()
[all …]

12345678910>>...31