Home | History | Annotate | Download | only in data

Lines Matching refs:filename

30 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops);
31 void regularize_curve(const string & filename,
43 INFOS("!!! Error ... usage : main filename start_cut_size stop_cut_size regularize_filename");
51 string filename=argv[1];
54 INFOS(filename);
60 read_xy_file(filename,tab_sizes,tab_mflops);
71 void regularize_curve(const string & filename,
77 ofstream output_file (filename.c_str(),ios::out) ;
109 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){
111 ifstream input_file (filename.c_str(),ios::in) ;
114 INFOS("!!! Error opening "<<filename);