Home
last modified time | relevance | path

Searched refs:BENCHMARK_TEMPLATE (Results 1 – 16 of 16) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Dbenchmarks.cc251 BENCHMARK_TEMPLATE(BM_Construct, Engine, PrecompiledSeedSeq); \
252 BENCHMARK_TEMPLATE(BM_Construct, Engine, std::seed_seq); \
253 BENCHMARK_TEMPLATE(BM_Direct, Engine); \
254 BENCHMARK_TEMPLATE(BM_Shuffle, Engine, 10); \
255 BENCHMARK_TEMPLATE(BM_Shuffle, Engine, 100); \
256 BENCHMARK_TEMPLATE(BM_Shuffle, Engine, 1000); \
257 BENCHMARK_TEMPLATE(BM_ShuffleReuse, Engine, 100); \
258 BENCHMARK_TEMPLATE(BM_ShuffleReuse, Engine, 1000); \
259 BENCHMARK_TEMPLATE(BM_Dist, Engine, \
261 BENCHMARK_TEMPLATE(BM_Dist, Engine, \
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dascii_benchmark.cc70 BENCHMARK_TEMPLATE(BM_Ascii, Noop);
71 BENCHMARK_TEMPLATE(BM_Ascii, std::isalpha);
72 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_isalpha);
73 BENCHMARK_TEMPLATE(BM_Ascii, std::isdigit);
74 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_isdigit);
75 BENCHMARK_TEMPLATE(BM_Ascii, std::isalnum);
76 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_isalnum);
77 BENCHMARK_TEMPLATE(BM_Ascii, std::isspace);
78 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_isspace);
79 BENCHMARK_TEMPLATE(BM_Ascii, std::ispunct);
[all …]
Dnumbers_benchmark.cc41 BENCHMARK_TEMPLATE(BM_FastIntToBuffer, int32_t)->Range(0, 1 << 15);
42 BENCHMARK_TEMPLATE(BM_FastIntToBuffer, int64_t)->Range(0, 1 << 30);
219 BENCHMARK_TEMPLATE(BM_SimpleAtof, absl::string_view)
224 BENCHMARK_TEMPLATE(BM_SimpleAtof, const char*)
229 BENCHMARK_TEMPLATE(BM_SimpleAtof, std::string)
249 BENCHMARK_TEMPLATE(BM_SimpleAtod, absl::string_view)
254 BENCHMARK_TEMPLATE(BM_SimpleAtod, const char*)
259 BENCHMARK_TEMPLATE(BM_SimpleAtod, std::string)
Dstr_split_benchmark.cc163 BENCHMARK_TEMPLATE(BM_SplitStringWithOneChar, OneCharLiteral);
164 BENCHMARK_TEMPLATE(BM_SplitStringWithOneChar, OneCharStringLiteral);
177 BENCHMARK_TEMPLATE(BM_SplitStringWithOneCharNoVector, OneCharLiteral);
178 BENCHMARK_TEMPLATE(BM_SplitStringWithOneCharNoVector, OneCharStringLiteral);
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dfixed_array_benchmark.cc43 BENCHMARK_TEMPLATE(BM_FixedArray, char, absl::kFixedArrayUseDefault)
45 BENCHMARK_TEMPLATE(BM_FixedArray, char, 0)->Range(0, 1 << 16);
46 BENCHMARK_TEMPLATE(BM_FixedArray, char, 1)->Range(0, 1 << 16);
47 BENCHMARK_TEMPLATE(BM_FixedArray, char, 16)->Range(0, 1 << 16);
48 BENCHMARK_TEMPLATE(BM_FixedArray, char, 256)->Range(0, 1 << 16);
49 BENCHMARK_TEMPLATE(BM_FixedArray, char, 65536)->Range(0, 1 << 16);
51 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, absl::kFixedArrayUseDefault)
53 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 0)->Range(0, 1 << 16);
54 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 1)->Range(0, 1 << 16);
55 BENCHMARK_TEMPLATE(BM_FixedArray, SimpleClass, 16)->Range(0, 1 << 16);
[all …]
Dinlined_vector_benchmark.cc231 BENCHMARK_TEMPLATE(BM_SwapElements, LargeCopyableOnly)->Range(0, 1024);
232 BENCHMARK_TEMPLATE(BM_SwapElements, LargeCopyableSwappable)->Range(0, 1024);
233 BENCHMARK_TEMPLATE(BM_SwapElements, LargeCopyableMovable)->Range(0, 1024);
234 BENCHMARK_TEMPLATE(BM_SwapElements, LargeCopyableMovableSwappable)
250 BENCHMARK_TEMPLATE(BM_Sizeof, absl::InlinedVector<char, 1>);
251 BENCHMARK_TEMPLATE(BM_Sizeof, absl::InlinedVector<char, 4>);
252 BENCHMARK_TEMPLATE(BM_Sizeof, absl::InlinedVector<char, 7>);
253 BENCHMARK_TEMPLATE(BM_Sizeof, absl::InlinedVector<char, 8>);
255 BENCHMARK_TEMPLATE(BM_Sizeof, absl::InlinedVector<int, 1>);
256 BENCHMARK_TEMPLATE(BM_Sizeof, absl::InlinedVector<int, 4>);
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Dvariant_benchmark.cc177 BENCHMARK_TEMPLATE(BM_Visit, 1);
178 BENCHMARK_TEMPLATE(BM_Visit, 2);
179 BENCHMARK_TEMPLATE(BM_Visit, 3);
180 BENCHMARK_TEMPLATE(BM_Visit, 4);
181 BENCHMARK_TEMPLATE(BM_Visit, 5);
182 BENCHMARK_TEMPLATE(BM_Visit, 6);
183 BENCHMARK_TEMPLATE(BM_Visit, 7);
184 BENCHMARK_TEMPLATE(BM_Visit, 8);
185 BENCHMARK_TEMPLATE(BM_Visit, 16);
186 BENCHMARK_TEMPLATE(BM_Visit, 32);
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
Dequal_benchmark.cc81 BENCHMARK_TEMPLATE(BM_absl_equal_benchmark, uint8_t)
83 BENCHMARK_TEMPLATE(BM_std_equal_benchmark, uint8_t)
85 BENCHMARK_TEMPLATE(BM_memcmp_benchmark, uint8_t)
87 BENCHMARK_TEMPLATE(BM_absl_equal_self_benchmark, uint8_t)
90 BENCHMARK_TEMPLATE(BM_absl_equal_benchmark, uint16_t)
92 BENCHMARK_TEMPLATE(BM_std_equal_benchmark, uint16_t)
94 BENCHMARK_TEMPLATE(BM_memcmp_benchmark, uint16_t)
96 BENCHMARK_TEMPLATE(BM_absl_equal_self_benchmark, uint16_t)
99 BENCHMARK_TEMPLATE(BM_absl_equal_benchmark, uint32_t)
101 BENCHMARK_TEMPLATE(BM_std_equal_benchmark, uint32_t)
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
Dint128_benchmark.cc60 BENCHMARK_TEMPLATE(BM_DivideClass128UniformDivisor, absl::uint128);
61 BENCHMARK_TEMPLATE(BM_DivideClass128UniformDivisor, absl::int128);
72 BENCHMARK_TEMPLATE(BM_RemainderClass128UniformDivisor, absl::uint128);
73 BENCHMARK_TEMPLATE(BM_RemainderClass128UniformDivisor, absl::int128);
100 BENCHMARK_TEMPLATE(BM_DivideClass128SmallDivisor, absl::uint128);
101 BENCHMARK_TEMPLATE(BM_DivideClass128SmallDivisor, absl::int128);
112 BENCHMARK_TEMPLATE(BM_RemainderClass128SmallDivisor, absl::uint128);
113 BENCHMARK_TEMPLATE(BM_RemainderClass128SmallDivisor, absl::int128);
192 BENCHMARK_TEMPLATE(BM_DivideIntrinsic128UniformDivisor, unsigned __int128);
193 BENCHMARK_TEMPLATE(BM_DivideIntrinsic128UniformDivisor, __int128);
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dostringstream_benchmark.cc55 BENCHMARK_TEMPLATE(BM_StdStream, kNone)
61 BENCHMARK_TEMPLATE(BM_StdStream, kStdString)
93 BENCHMARK_TEMPLATE(BM_CustomStream, kNone)
101 BENCHMARK_TEMPLATE(BM_CustomStream, kStdString)
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dspinlock_benchmark.cc40 BENCHMARK_TEMPLATE(BM_SpinLock,
46 BENCHMARK_TEMPLATE(BM_SpinLock,
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex_benchmark.cc235 BENCHMARK_TEMPLATE(BM_Contended, absl::Mutex)
240 BENCHMARK_TEMPLATE(BM_Contended, absl::base_internal::SpinLock)
245 BENCHMARK_TEMPLATE(BM_Contended, std::mutex)
/third_party/benchmark/test/
Dbenchmark_test.cc118 BENCHMARK_TEMPLATE(BM_Sequential, std::list<int>)->Range(1 << 0, 1 << 10);
121 BENCHMARK_TEMPLATE(BM_Sequential, std::vector<int>, int)->Arg(512);
Dcxx03_test.cc43 BENCHMARK_TEMPLATE(BM_template1, long);
/third_party/benchmark/include/benchmark/
Dbenchmark.h1535 #define BENCHMARK_TEMPLATE(n, ...) \ macro
1541 #define BENCHMARK_TEMPLATE(n, a) BENCHMARK_TEMPLATE1(n, a) macro
/third_party/benchmark/docs/
Duser_guide.md558 BENCHMARK_TEMPLATE(BM_Sequential, WaitQueue<int>)->Range(1<<0, 1<<10);
571 #define BENCHMARK_TEMPLATE(func, arg1)