Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/test/
DTestVADDTX.cc83 std::string out_filename, bool append, in Run() argument
98 out_file.Open(out_filename, kOutputFreqHz, "ab"); in Run()
100 out_file.Open(out_filename, kOutputFreqHz, "wb"); in Run()
202 std::stringstream out_filename; in Test() local
203 out_filename << webrtc::test::OutputPath() in Test()
208 32000, 1, out_filename.str(), !new_outfile, expects); in Test()
247 std::string out_filename = webrtc::test::OutputPath() + in Perform() local
253 32000, 1, out_filename, false, expects); in Perform()
258 32000, 1, out_filename, true, expects); in Perform()
261 out_filename = webrtc::test::OutputPath() + "testOpusDtx_outFile_stereo.pcm"; in Perform()
[all …]
DTestVADDTX.h69 std::string out_filename, bool append, const int* expects);
/external/mesa3d/src/gallium/targets/graw-null/
Dgraw_util.c60 static char out_filename[256] = ""; variable
72 strncpy(out_filename, argv[*argi + 1], sizeof(out_filename) - 1); in graw_parse_args()
73 out_filename[sizeof(out_filename) - 1] = '\0'; in graw_parse_args()
87 filename = out_filename; in graw_save_surface_to_file()
/external/webrtc/webrtc/modules/audio_coding/codecs/tools/
Daudio_codec_speed_test.cc76 std::string out_filename = in SetUp() local
81 while ((found = out_filename.find('/')) != std::string::npos) in SetUp()
82 out_filename.replace(found, 1, "_"); in SetUp()
84 out_filename = test::OutputPath() + out_filename + ".pcm"; in SetUp()
86 out_file_ = fopen(out_filename.c_str(), "wb"); in SetUp()
89 printf("Output to be saved in %s.\n", out_filename.c_str()); in SetUp()
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
Dneteq_quality_test.cc92 DEFINE_string(out_filename,
232 const std::string out_filename = FLAGS_out_filename; in NetEqQualityTest() local
233 const std::string log_filename = out_filename + ".log"; in NetEqQualityTest()
237 if (out_filename.size() >= 4 && in NetEqQualityTest()
238 out_filename.substr(out_filename.size() - 4) == ".wav") { in NetEqQualityTest()
241 new webrtc::test::OutputWavFile(out_filename, 1000 * out_sampling_khz)); in NetEqQualityTest()
244 output_.reset(new webrtc::test::OutputAudioFile(out_filename)); in NetEqQualityTest()
/external/zopfli/src/zopflipng/
Dzopflipng_bin.cc322 std::string out_filename = user_out_filename; in main() local
326 out_filename = dir + prefix + file + ext; in main()
328 bool different_output_name = out_filename != files[i]; in main()
340 size_t origoutfilesize = GetFileSize(out_filename); in main()
364 printf("File %s exists, overwrite? (y/N) ", out_filename.c_str()); in main()
375 lodepng::save_file(resultpng, out_filename); in main()
/external/tensorflow/tensorflow/tools/compatibility/
Dipynb.py30 def process_file(in_filename, out_filename, upgrader): argument
51 report_text = upgrader._format_log(log, in_filename, out_filename)
54 shutil.move(temp_file.name, out_filename)
Dtf_upgrade_v2_main.py28 def process_file(in_filename, out_filename, upgrader): argument
33 upgrader.process_file(in_filename, out_filename)
36 ipynb.process_file(in_filename, out_filename, upgrader)
Dast_edits.py479 def process_file(self, in_filename, out_filename): argument
493 ret = self.process_opened_file(in_filename, in_file, out_filename,
497 shutil.move(temp_file.name, out_filename)
523 def _format_log(self, log, in_filename, out_filename): argument
526 out_filename)
532 def process_opened_file(self, in_filename, in_file, out_filename, out_file): argument
554 self._format_log(log, in_filename, out_filename),
/external/toolchain-utils/binary_search_tool/cros_pkg/
Dcreate_cleanup_script.py83 out_filename = 'cros_pkg/' + options.board + '_cleanup.sh'
85 with open(out_filename, 'w') as out_file:
/external/python/cpython2/Modules/_ctypes/libffi/
Dgenerate-darwin-source-and-headers.py102 out_filename = filename
106 out_filename = "%s_%s%s" % (split_name[0], file_suffix, split_name[1])
109 with open(os.path.join(dst_dir, out_filename), 'w') as out_file:
/external/libffi/
Dgenerate-darwin-source-and-headers.py102 out_filename = filename
106 out_filename = "%s_%s%s" % (split_name[0], file_suffix, split_name[1])
109 with open(os.path.join(dst_dir, out_filename), 'w') as out_file:
/external/webrtc/webrtc/modules/audio_processing/test/
Dprocess_test.cc155 std::string out_filename; in void_main() local
200 out_filename = argv[i]; in void_main()
471 if (out_filename.size() == 0) { in void_main()
472 out_filename = out_path + "out"; in void_main()
647 out_filename + ".wav", output_sample_rate, in void_main()
804 output_raw_file.reset(new RawFile(out_filename + ".pcm")); in void_main()
812 output_raw_file.reset(new RawFile(out_filename + ".float")); in void_main()
891 output_wav_file.reset(new WavWriter(out_filename + ".wav", in void_main()
1041 output_raw_file.reset(new RawFile(out_filename + ".pcm")); in void_main()
1044 output_wav_file.reset(new WavWriter(out_filename + ".wav", in void_main()
Daudio_processing_unittest.cc388 const std::string& out_filename,
1712 const std::string& out_filename, in ProcessDebugDump() argument
1741 EXPECT_NOERR(apm_->StartDebugRecording(out_filename.c_str())); in ProcessDebugDump()
1814 const std::string out_filename = test::TempFilename( in VerifyDebugDumpTest() local
1818 ProcessDebugDump(ref_filename, out_filename, format); in VerifyDebugDumpTest()
1821 FILE* out_file = fopen(out_filename.c_str(), "rb"); in VerifyDebugDumpTest()
1843 remove(out_filename.c_str()); in VerifyDebugDumpTest()
/external/dynamic_depth/internal/dynamic_depth/
Ddynamic_depth.cc56 bool WriteImageAndMetadataAndContainer(const string& out_filename, in WriteImageAndMetadataAndContainer() argument
64 output_jpeg_stream.open(out_filename, std::ostream::out); in WriteImageAndMetadataAndContainer()
/external/dynamic_depth/includes/dynamic_depth/
Ddynamic_depth.h13 bool WriteImageAndMetadataAndContainer(const string& out_filename,