Searched refs:in_file (Results 26 - 50 of 51) sorted by relevance

123

/external/webrtc/webrtc/modules/audio_processing/transient/
H A Dtransient_suppression_test.cc77 bool ReadBuffers(FILE* in_file, argument
95 in_file) != num_channels * audio_buffer_size) {
148 FILE* in_file = fopen(FLAGS_in_file_name.c_str(), "rb"); local
149 ASSERT_TRUE(in_file != NULL);
197 while (ReadBuffers(in_file,
233 fclose(in_file);
/external/webrtc/webrtc/modules/audio_processing/test/
H A Daudioproc_float.cc135 auto in_file = rtc_make_scoped_ptr(new WavReader(FLAGS_i)); local
136 std::cout << FLAGS_i << ": " << in_file->FormatAsString() << std::endl;
137 processor.reset(new WavFileProcessor(std::move(ap), std::move(in_file),
H A Daudio_file_processor.cc45 scoped_ptr<WavReader> in_file,
48 in_buf_(GetChannelBuffer(*in_file)),
50 input_config_(GetStreamConfig(*in_file)),
52 buffer_reader_(std::move(in_file)),
44 WavFileProcessor(scoped_ptr<AudioProcessing> ap, scoped_ptr<WavReader> in_file, scoped_ptr<WavWriter> out_file) argument
H A Daudio_file_processor.h88 rtc::scoped_ptr<WavReader> in_file,
H A Ddebug_dump_test.cc272 FILE* in_file = fopen(in_filename.c_str(), "rb"); local
273 ASSERT_TRUE(in_file);
276 while (ReadMessageFromFile(in_file, &event_msg)) {
295 fclose(in_file);
/external/autotest/client/cros/input_playback/
H A Dstylus.py45 def replace_with_prefix(self, in_file, out_file, prefix, x_value, y_value):
51 @param in_file: the template file containing keywords for substitution.
58 with open(in_file) as infile:
/external/toolchain-utils/android_bench_suite/
H A Dfix_skia_results.py139 with _GetUserFile(sys.argv[1:]) as in_file:
140 obj = json.load(in_file)
/external/webrtc/webrtc/modules/audio_processing/intelligibility/test/
H A Dintelligibility_proc.cc101 WavReader in_file(FLAGS_clear_file);
103 in_file.ReadSamples(samples, &in_fpcm[0]);
/external/tensorflow/tensorflow/tools/compatibility/
H A Dtf_upgrade_test.py37 in_file = six.StringIO(old_file_text)
41 upgrader.process_opened_file("test.py", in_file,
H A Dtf_upgrade.py383 with open(in_filename, "r") as in_file, \
385 ret = self.process_opened_file(in_filename, in_file, out_filename,
393 def process_opened_file(self, in_filename, in_file, out_filename, out_file):
401 in_file: opened file (or StringIO)
414 lines = in_file.readlines()
/external/toolchain-utils/crosperf/
H A Dresults_organizer.py113 with open(fullname) as in_file:
114 return json.load(in_file)
H A Dgenerate_report.py279 with PickInputFile(args.input) as in_file:
280 raw_results = _ConvertToASCII(json.load(in_file))
H A Dresults_report.py522 with open(file_name) as in_file:
523 return ParseStandardPerfReport(in_file)
/external/toolchain-utils/deprecated/
H A Dcompare_benchmarks.py42 def GetStats(in_file):
44 f = open(in_file, 'r')
/external/owasp/sanitizer/tools/
H A Dcut_release.py121 in_file = open(path, "r")
123 file_content = in_file.read()
125 in_file.close()
/external/toolchain-utils/cwp/interpreter/
H A Dapp_engine_pull.py176 in_file = gzip.open(os.path.join(output_dir, compressed_filename), 'rb')
177 out_file.write(in_file.read())
178 in_file.close()
/external/libffi/
H A Dgenerate-darwin-source-and-headers.py108 with open(os.path.join(src_dir, filename)) as in_file:
113 out_file.write(in_file.read())
/external/python/cpython2/Modules/_ctypes/libffi/
H A Dgenerate-darwin-source-and-headers.py108 with open(os.path.join(src_dir, filename)) as in_file:
113 out_file.write(in_file.read())
/external/python/cpython3/Modules/_ctypes/libffi/
H A Dgenerate-darwin-source-and-headers.py108 with open(os.path.join(src_dir, filename)) as in_file:
113 out_file.write(in_file.read())
/external/toolchain-utils/
H A Dverify_compiler.py109 with open(dwarf_file, 'r') as in_file:
110 lines = in_file.readlines()
H A Dgenerate-waterfall-reports.py464 with open(log_file, 'r') as in_file:
465 lines = in_file.readlines()
/external/libmojo/build/android/gyp/util/
H A Dbuild_utils.py344 for in_file in inputs:
345 with zipfile.ZipFile(in_file, 'r') as in_zip:
351 dst_name = path_transform(info.filename, in_file)
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
H A DRTPencode.cc465 FILE* in_file = fopen(argv[1], "rb"); local
466 CHECK_NOT_NULL(in_file);
612 len = fread(org_data, 2, packet_size * numChannels, in_file) / numChannels;
812 len = fread(org_data, 2, packet_size * numChannels, in_file) / numChannels;
827 fclose(in_file);
/external/autotest/client/cros/audio/
H A Daudio_helper.py370 def noise_reduce_file(in_file, noise_file, out_file,
374 Runs the sox command to noise-reduce in_file using the noise
377 @param in_file: The file to noise reduce.
386 (SOX_PATH, sox_format, in_file, sox_format, out_file))
/external/python/cpython3/Lib/email/
H A Dmessage.py293 in_file = BytesIO(bpayload)
296 uu.decode(in_file, out_file, quiet=True)

Completed in 573 milliseconds

123