Home
last modified time | relevance | path

Searched refs:arglists (Results 1 – 8 of 8) sorted by relevance

/third_party/benchmark/src/
Dbenchmark_register.cc255 std::vector<std::vector<int64_t>> arglists(ranges.size()); in Ranges() local
257 AddRange(&arglists[i], ranges[i].first, ranges[i].second, in Ranges()
261 ArgsProduct(arglists); in Ranges()
267 const std::vector<std::vector<int64_t>>& arglists) { in ArgsProduct() argument
268 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == static_cast<int>(arglists.size())); in ArgsProduct()
270 std::vector<std::size_t> indices(arglists.size()); in ArgsProduct()
272 std::begin(arglists), std::end(arglists), std::size_t{1}, in ArgsProduct()
277 args.reserve(arglists.size()); in ArgsProduct()
279 for (std::size_t arg = 0; arg < arglists.size(); arg++) { in ArgsProduct()
280 args.push_back(arglists[arg][indices[arg]]); in ArgsProduct()
[all …]
/third_party/json/benchmarks/thirdparty/benchmark/src/
Dbenchmark_register.cc281 std::vector<std::vector<int64_t>> arglists(ranges.size()); in Ranges() local
284 AddRange(&arglists[i], ranges[i].first, ranges[i].second, in Ranges()
286 total *= arglists[i].size(); in Ranges()
289 std::vector<std::size_t> ctr(arglists.size(), 0); in Ranges()
293 tmp.reserve(arglists.size()); in Ranges()
295 for (std::size_t j = 0; j < arglists.size(); j++) { in Ranges()
296 tmp.push_back(arglists[j].at(ctr[j])); in Ranges()
301 for (std::size_t j = 0; j < arglists.size(); j++) { in Ranges()
302 if (ctr[j] + 1 < arglists[j].size()) { in Ranges()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dcmake.py1215 arglists = []
1217 arglists.append((target_list, target_dicts, data,
1219 pool.map(CallGenerateOutputForConfig, arglists)
Dninja.py2415 arglists = []
2417 arglists.append(
2419 pool.map(CallGenerateOutputForConfig, arglists)
/third_party/node/tools/gyp/pylib/gyp/generator/
Dcmake.py1314 arglists = []
1316 arglists.append(
1319 pool.map(CallGenerateOutputForConfig, arglists)
Dninja.py2927 arglists = []
2929 arglists.append(
2932 pool.map(CallGenerateOutputForConfig, arglists)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td478 // Return the concatenation of the given arglists. LLVMMatchType's are adjusted
480 class arglistconcat<list<list<AMDGPUArg>> arglists, int shift = 0> {
482 !foldl([]<AMDGPUArg>, arglists, lhs, rhs,
/third_party/benchmark/include/benchmark/
Dbenchmark.h953 Benchmark* ArgsProduct(const std::vector<std::vector<int64_t> >& arglists);