HomeSort by relevance Sort by last modified time
    Searched full:output_filename (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /development/gsi/gsi_util/gsi_util/utils/
image_utils.py 21 def unsparse(output_filename, input_filename):
23 run_command(['simg2img', input_filename, output_filename])
  /external/dtc/
fdtoverlay.c 58 const char *output_filename,
106 ret = utilfdt_write(output_filename, blob);
109 output_filename);
127 char *output_filename = NULL; local
137 output_filename = optarg;
148 if (!output_filename)
159 printf("output = %s\n", output_filename);
164 if (do_fdtoverlay(input_filename, output_filename, argc, argv))
  /external/v8/src/inspector/build/
xxd.py 17 variable_name, input_filename, output_filename = sys.argv[1:]
24 with open(output_filename, 'w') as output_file:
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/
gen_archrast.py 43 def write_template_to_file(template_filename, output_filename, **kwargs):
44 with open(output_filename, "w") as outfile:
155 (output_dir, output_filename) = os.path.split(args.output)
161 #print("output_filename = %s" % output_filename, file=sys.stderr)
173 output_fullpath = os.sep.join([output_dir, output_filename])
176 filename=output_filename,
183 output_fullpath = os.sep.join([output_dir, output_filename])
186 filename=output_filename,
193 output_fullpath = os.sep.join([output_dir, output_filename])
    [all...]
gen_knobs.py 43 def write_template_to_file(template_filename, output_filename, **kwargs):
44 output_dirname = os.path.dirname(output_filename)
47 with open(output_filename, "w") as outfile:
  /external/tensorflow/tensorflow/tools/git/
gen_git_source.sh 17 OUTPUT_FILENAME=$1
18 if [[ -z "${OUTPUT_FILENAME}" ]]; then
28 cat <<EOF > ${OUTPUT_FILENAME}
  /external/webrtc/webrtc/test/testsupport/
frame_writer.cc 18 FrameWriterImpl::FrameWriterImpl(std::string output_filename,
20 : output_filename_(output_filename),
frame_writer.h 50 // output_filename The file to write. Will be overwritten if already
54 FrameWriterImpl(std::string output_filename, size_t frame_length_in_bytes);
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/src/
io.cc 92 std::ostream* GetOutputStream(const string_piece& output_filename,
95 if (output_filename != "-") {
96 file_stream->open(output_filename.str(), std::ios_base::binary);
99 *err << "glslc: error: cannot open output file: '" << output_filename local
101 if (access(output_filename.str().c_str(), W_OK) != 0) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
unixccompiler.py 128 output_filename = \
131 if self._need_link(objects, output_filename):
132 self.mkpath(os.path.dirname(output_filename))
134 [output_filename] +
144 self.spawn(self.ranlib + [output_filename])
148 log.debug("skipping %s (up-to-date)", output_filename)
151 output_filename, output_dir=None, libraries=None,
164 output_filename = os.path.join(output_dir, output_filename)
166 if self._need_link(objects, output_filename)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
unixccompiler.py 128 output_filename = \
131 if self._need_link(objects, output_filename):
132 self.mkpath(os.path.dirname(output_filename))
134 [output_filename] +
144 self.spawn(self.ranlib + [output_filename])
148 log.debug("skipping %s (up-to-date)", output_filename)
151 output_filename, output_dir=None, libraries=None,
164 output_filename = os.path.join(output_dir, output_filename)
166 if self._need_link(objects, output_filename)
    [all...]
  /external/lz4/programs/
lz4cli.c 104 int LZ4IO_compressFilename_Legacy(const char* input_filename, const char* output_filename, int compressionlevel); /* hidden function */
277 const char* output_filename= NULL; local
305 output_filename=stdoutmark;
322 else output_filename=stdoutmark;
336 || (!strcmp(argument, "--to-stdout"))) { forceStdout=1; output_filename=stdoutmark; continue; }
392 case 'c': forceStdout=1; output_filename=stdoutmark; break;
489 /* Second non-option arg in output_filename to preserve original cli logic. */
490 if (!output_filename) {
491 output_filename=argument;
492 if (!strcmp (output_filename, nullOutput)) output_filename = nulmark
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
spectrogram_convert_test_data.cc 31 const string output_filename = input_filename + ".bin"; local
32 if (!WriteComplexVectorToRawFloatFile(output_filename, input_data)) {
36 LOG(INFO) << "Wrote raw file to " << output_filename;
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
io.h 48 // Returns and initializes the file_stream parameter if the output_filename
49 // refers to a file, or returns &std::cout if the output_filename is "-".
53 std::ostream* GetOutputStream(const string_piece& output_filename,
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
audio_classifier_test.cc 54 std::string output_filename = argv[4]; local
57 std::cout << "Output file: " << output_filename << std::endl;
65 FILE* out_file = fopen(output_filename.c_str(), "wb");
67 std::cout << "Cannot open output file " << output_filename << std::endl;
  /external/tensorflow/tensorflow/contrib/ffmpeg/default/
ffmpeg_lib.cc 44 const string& output_filename,
68 command.emplace_back(StrCat(output_filename));
74 const string& output_filename) {
85 StrCat(output_filename)};
314 string output_filename = io::GetTempFilename("raw"); local
316 FfmpegAudioCommandLine(filename, output_filename, audio_format_id,
341 *output_samples = ReadPcmFile(output_filename);
342 TF_QCHECK_OK(Env::Default()->DeleteFile(output_filename))
343 << output_filename;
365 string output_filename = io::GetTempFilename("raw") local
405 << "Could not read FFmpeg output file: " << output_filename; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
unixccompiler.py 186 output_filename = \
189 if self._need_link(objects, output_filename):
190 self.mkpath(os.path.dirname(output_filename))
192 [output_filename] +
202 self.spawn(self.ranlib + [output_filename])
206 log.debug("skipping %s (up-to-date)", output_filename)
209 output_filename, output_dir=None, libraries=None,
222 output_filename = os.path.join(output_dir, output_filename)
224 if self._need_link(objects, output_filename):
    [all...]
bcppcompiler.py 154 output_filename = \
157 if self._need_link (objects, output_filename):
158 lib_args = [output_filename, '/u'] + objects
166 log.debug("skipping %s (up-to-date)", output_filename)
174 output_filename,
198 output_filename = os.path.join (output_dir, output_filename)
200 if self._need_link (objects, output_filename):
221 head, tail = os.path.split (output_filename)
263 ld_args.extend([',',output_filename])
    [all...]
  /external/python/cpython2/Lib/distutils/
unixccompiler.py 130 output_filename = \
133 if self._need_link(objects, output_filename):
134 self.mkpath(os.path.dirname(output_filename))
136 [output_filename] +
146 self.spawn(self.ranlib + [output_filename])
150 log.debug("skipping %s (up-to-date)", output_filename)
153 output_filename, output_dir=None, libraries=None,
166 output_filename = os.path.join(output_dir, output_filename)
168 if self._need_link(objects, output_filename)
    [all...]
bcppcompiler.py 154 output_filename = \
157 if self._need_link (objects, output_filename):
158 lib_args = [output_filename, '/u'] + objects
166 log.debug("skipping %s (up-to-date)", output_filename)
174 output_filename,
198 output_filename = os.path.join (output_dir, output_filename)
200 if self._need_link (objects, output_filename):
221 head, tail = os.path.split (output_filename)
263 ld_args.extend([',',output_filename])
    [all...]
  /external/python/cpython3/Lib/distutils/
unixccompiler.py 126 output_filename = \
129 if self._need_link(objects, output_filename):
130 self.mkpath(os.path.dirname(output_filename))
132 [output_filename] +
142 self.spawn(self.ranlib + [output_filename])
146 log.debug("skipping %s (up-to-date)", output_filename)
149 output_filename, output_dir=None, libraries=None,
163 output_filename = os.path.join(output_dir, output_filename)
165 if self._need_link(objects, output_filename)
    [all...]
bcppcompiler.py 154 output_filename = \
157 if self._need_link (objects, output_filename):
158 lib_args = [output_filename, '/u'] + objects
166 log.debug("skipping %s (up-to-date)", output_filename)
174 output_filename,
198 output_filename = os.path.join (output_dir, output_filename)
200 if self._need_link (objects, output_filename):
221 head, tail = os.path.split (output_filename)
263 ld_args.extend([',',output_filename])
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
unixccompiler.py 128 output_filename = \
131 if self._need_link(objects, output_filename):
132 self.mkpath(os.path.dirname(output_filename))
134 [output_filename] +
144 self.spawn(self.ranlib + [output_filename])
148 log.debug("skipping %s (up-to-date)", output_filename)
151 output_filename, output_dir=None, libraries=None,
164 output_filename = os.path.join(output_dir, output_filename)
166 if self._need_link(objects, output_filename)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
unixccompiler.py 128 output_filename = \
131 if self._need_link(objects, output_filename):
132 self.mkpath(os.path.dirname(output_filename))
134 [output_filename] +
144 self.spawn(self.ranlib + [output_filename])
148 log.debug("skipping %s (up-to-date)", output_filename)
151 output_filename, output_dir=None, libraries=None,
164 output_filename = os.path.join(output_dir, output_filename)
166 if self._need_link(objects, output_filename)
    [all...]
  /build/make/tools/
generate-notice-files.py 76 def combine_notice_files_html(file_hash, input_dir, output_filename):
77 """Combine notice files in FILE_HASH and output a HTML version to OUTPUT_FILENAME."""
91 output_file = open(output_filename, "wb")
134 def combine_notice_files_text(file_hash, input_dir, output_filename, file_title):
135 """Combine notice files in FILE_HASH and output a text version to OUTPUT_FILENAME."""
138 output_file = open(output_filename, "wb")
149 def combine_notice_files_xml(files_with_same_hash, input_dir, output_filename):
150 """Combine notice files in FILE_HASH and output a XML version to OUTPUT_FILENAME."""
162 output_file = open(output_filename, "wb")

Completed in 609 milliseconds

1 2 3 4 5 6 7