Lines Matching refs:args_vector_t
100 typedef std::vector<std::vector<int64_t>> args_vector_t; typedef
227 static bool ParseOnebufManualStr(std::string& arg, args_vector_t* to_populate) { in ParseOnebufManualStr()
269 static bool ParseTwobufManualStr(std::string& arg, args_vector_t* to_populate) { in ParseTwobufManualStr()
315 args_vector_t* ResolveArgs(args_vector_t* to_populate, std::string args, in ResolveArgs()
316 std::map<std::string, args_vector_t>& args_shorthand) { in ResolveArgs()
354 const std::string& fn_name, args_vector_t* run_args) { in RegisterGoogleBenchmarks()
380 std::map<std::string, args_vector_t>& args_shorthand) { in RegisterCliBenchmarks()
382 args_vector_t arg_vector; in RegisterCliBenchmarks()
383 args_vector_t* run_args = &arg_vector; in RegisterCliBenchmarks()
403 std::map<std::string, args_vector_t>& args_shorthand) { in RegisterXmlBenchmarks()
435 args_vector_t arg_vector; in RegisterXmlBenchmarks()
436 args_vector_t* run_args = ResolveArgs(&arg_vector, in RegisterXmlBenchmarks()
462 static void SetArgs(const std::vector<int>& sizes, args_vector_t* args) { in SetArgs()
468 static void SetArgs(const std::vector<int>& sizes, int align, args_vector_t* args) { in SetArgs()
475 static void SetArgs(const std::vector<int>& sizes, int align1, int align2, args_vector_t* args) { in SetArgs()
481 static args_vector_t GetArgs(const std::vector<int>& sizes) { in GetArgs()
482 args_vector_t args; in GetArgs()
487 static args_vector_t GetArgs(const std::vector<int>& sizes, int align) { in GetArgs()
488 args_vector_t args; in GetArgs()
493 static args_vector_t GetArgs(const std::vector<int>& sizes, int align1, int align2) { in GetArgs()
494 args_vector_t args; in GetArgs()
499 std::map<std::string, args_vector_t> GetShorthand() { in GetShorthand()
504 std::map<std::string, args_vector_t> args_shorthand { in GetShorthand()
525 {"NUM_PROPS", args_vector_t{ {1}, {4}, {16}, {64}, {128}, {256}, {512} }}, in GetShorthand()
527 {"MATH_COMMON", args_vector_t{ {0}, {1}, {2}, {3} }}, in GetShorthand()
528 {"MATH_SINCOS_COMMON", args_vector_t{ {0}, {1}, {2}, {3}, {4}, {5}, {6}, {7} }}, in GetShorthand()
531 args_vector_t args_onebuf; in GetShorthand()
532 args_vector_t args_twobuf; in GetShorthand()
559 std::map<std::string, args_vector_t>& args_shorthand) { in RegisterAllBenchmarks()
562 args_vector_t arg_vector; in RegisterAllBenchmarks()
563 args_vector_t* run_args = ResolveArgs(&arg_vector, function_info.second, in RegisterAllBenchmarks()
570 std::map<std::string, args_vector_t> args_shorthand = GetShorthand(); in main()