Lines Matching refs:string
66 std::string g_alg_name;
121 std::string name;
163 algorithm(const std::string &alg_name, bool t) : name(alg_name), is_tiled(t) {} in algorithm()
192 std::string s(g_output_prefix); in operator ()()
203 std::string s(g_output_prefix); in operator ()()
674 typedef std::map<std::string, algorithm *> algmap_t; in main()
678 algmap.insert(std::pair<std::string, algorithm *>("dpotrf", new algorithm_dpotrf)); in main()
679 algmap.insert(std::pair<std::string, algorithm *>("crout", new algorithm_crout)); in main()
680 algmap.insert(std::pair<std::string, algorithm *>("depend", new algorithm_depend)); in main()
681 algmap.insert(std::pair<std::string, algorithm *>("join", new algorithm_join)); in main()
697 std::string s(g_output_prefix); in main()