/third_party/lz4/programs/ |
H A D | lz4cli.c | 96 int LZ4IO_compressFilename_Legacy(const char* input_filename, const char* output_filename, int compressionlevel, const LZ4IO_prefs_t* prefs); /* hidden function */ 324 const char* output_filename= NULL; in main() local 354 output_filename=stdoutmark; in main() 372 else output_filename=stdoutmark; in main() 391 || (!strcmp(argument, "--to-stdout"))) { forceStdout=1; output_filename=stdoutmark; continue; } in main() 494 output_filename=stdoutmark; in main() 598 /* Second non-option arg is output_filename */ in main() 599 if (!output_filename) { in main() 600 output_filename = argument; in main() 601 if (!strcmp (output_filename, nullOutpu in main() [all...] |
H A D | lz4io.h | 65 /* if output_filename == stdoutmark, writes to stdout */ 66 int LZ4IO_compressFilename(const char* input_filename, const char* output_filename, int compressionlevel, const LZ4IO_prefs_t* prefs); 67 int LZ4IO_decompressFilename(const char* input_filename, const char* output_filename, const LZ4IO_prefs_t* prefs);
|
H A D | lz4io.c | 412 int LZ4IO_compressFilename_Legacy(const char* input_filename, const char* output_filename, in LZ4IO_compressFilename_Legacy() argument 431 foutput = LZ4IO_openDstFile(output_filename, prefs); in LZ4IO_compressFilename_Legacy() 489 if (!LZ4IO_isStdout(output_filename)) fclose(foutput); /* do not close stdout */ in LZ4IO_compressFilename_Legacy() 1275 const char* input_filename, const char* output_filename, in LZ4IO_decompressSrcFile() 1306 (void)output_filename; in LZ4IO_decompressSrcFile() 1314 const char* input_filename, const char* output_filename, in LZ4IO_decompressDstFile() 1320 FILE* const foutput = LZ4IO_openDstFile(output_filename, prefs); in LZ4IO_decompressDstFile() 1328 result = LZ4IO_decompressSrcFile(ress, input_filename, output_filename, prefs); in LZ4IO_decompressDstFile() 1334 && !LZ4IO_isStdout(output_filename) in LZ4IO_decompressDstFile() 1335 && !LZ4IO_isDevNull(output_filename)) { in LZ4IO_decompressDstFile() 1274 LZ4IO_decompressSrcFile(dRess_t ress, const char* input_filename, const char* output_filename, const LZ4IO_prefs_t* const prefs) LZ4IO_decompressSrcFile() argument 1313 LZ4IO_decompressDstFile(dRess_t ress, const char* input_filename, const char* output_filename, const LZ4IO_prefs_t* const prefs) LZ4IO_decompressDstFile() argument 1348 LZ4IO_decompressFilename(const char* input_filename, const char* output_filename, const LZ4IO_prefs_t* prefs) LZ4IO_decompressFilename() argument [all...] |
/third_party/python/Lib/distutils/ |
H A D | 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...] |
H A D | 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...] |
H A D | msvc9compiler.py | 550 output_filename = self.library_filename(output_libname, 553 if self._need_link(objects, output_filename): 554 lib_args = objects + ['/OUT:' + output_filename] 562 log.debug("skipping %s (up-to-date)", output_filename) 568 output_filename, 595 output_filename = os.path.join(output_dir, output_filename) 597 if self._need_link(objects, output_filename): 614 objects + ['/OUT:' + output_filename]) 624 os.path.basename(output_filename)) [all...] |
H A D | _msvccompiler.py | 418 output_filename = self.library_filename(output_libname, 421 if self._need_link(objects, output_filename): 422 lib_args = objects + ['/OUT:' + output_filename] 431 log.debug("skipping %s (up-to-date)", output_filename) 437 output_filename, 464 output_filename = os.path.join(output_dir, output_filename) 466 if self._need_link(objects, output_filename): 472 objects + ['/OUT:' + output_filename]) 482 os.path.basename(output_filename)) [all...] |
H A D | msvccompiler.py | 437 output_filename = self.library_filename(output_libname, 440 if self._need_link(objects, output_filename): 441 lib_args = objects + ['/OUT:' + output_filename] 449 log.debug("skipping %s (up-to-date)", output_filename) 455 output_filename, 482 output_filename = os.path.join(output_dir, output_filename) 484 if self._need_link(objects, output_filename): 501 objects + ['/OUT:' + output_filename]) 510 os.path.basename(output_filename)) [all...] |
H A D | cygwinccompiler.py | 172 def link(self, target_desc, objects, output_filename, output_dir=None, 200 os.path.basename(output_filename)) 208 "LIBRARY %s" % os.path.basename(output_filename), 241 UnixCCompiler.link(self, target_desc, objects, output_filename,
|
H A D | ccompiler.py | 620 output_filename, 635 as 'objects'. 'output_filename' should be a filename. If 636 'output_dir' is supplied, 'output_filename' is relative to it 637 (i.e. 'output_filename' can provide directory components if 702 output_filename, 714 output_filename, output_dir,
|
/third_party/ninja/src/ |
H A D | msvc_helper_main-win32.cc | 83 const char* output_filename = NULL; in MSVCHelperMain() local 98 output_filename = optarg; in MSVCHelperMain() 131 if (output_filename) { in MSVCHelperMain() 136 WriteDepFileOrDie(output_filename, parser); in MSVCHelperMain()
|
/third_party/mesa3d/src/intel/tools/ |
H A D | intel_dump_gpu.c | 59 static char *output_filename = NULL; variable 232 output_filename, device, devinfo.ver); in dump_execbuffer2() 462 free(output_filename); in maybe_init() 465 output_filename = strdup(value); in maybe_init() 466 output_file = fopen(output_filename, "w+"); in maybe_init() 469 output_filename); in maybe_init() 496 output_filename, device, devinfo.ver); in maybe_init() 794 free(output_filename); in fini()
|
/third_party/astc-encoder/Source/ |
H A D | astcenccli_toplevel.cpp | 1978 std::string output_filename = argc >= 4 ? argv[3] : ""; 1986 if (output_filename.empty()) 2073 out_bitness = get_output_filename_enforced_bitness(output_filename.c_str()); 2095 int bitness = get_output_filename_enforced_bitness(output_filename.c_str()); 2098 const char *eptr = strrchr(output_filename.c_str(), '.'); 2108 bool is_null = output_filename == "NUL" || output_filename == "nul"; 2110 bool is_null = output_filename == "/dev/null"; 2113 if (!(is_null || ends_with(output_filename, ".astc") || ends_with(output_filename, " [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
H A D | LinkTimeOptimizer.h | 58 (llvm_lto_t lto, const char* output_filename);
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | make.py | 808 self, qualified_target, base_path, output_filename, spec, configs, part_of_all 816 output_filename: output .mk file name to write 820 gyp.common.EnsureDirExists(output_filename) 822 self.fp = open(output_filename, "w") 960 def WriteSubMake(self, output_filename, makefile_path, targets, build_dir): 967 output_filename: sub-project Makefile name to write 972 gyp.common.EnsureDirExists(output_filename) 973 self.fp = open(output_filename, "w") 979 % os.path.join(os.path.dirname(output_filename), build_dir)
|
H A D | android.py | 116 output_filename, 130 output_filename: output .mk file name to write 137 gyp.common.EnsureDirExists(output_filename) 139 self.fp = open(output_filename, "w")
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | make.py | 817 self, qualified_target, base_path, output_filename, spec, configs, part_of_all 825 output_filename: output .mk file name to write 829 gyp.common.EnsureDirExists(output_filename) 831 self.fp = open(output_filename, "w") 969 def WriteSubMake(self, output_filename, makefile_path, targets, build_dir): 976 output_filename: sub-project Makefile name to write 981 gyp.common.EnsureDirExists(output_filename) 982 self.fp = open(output_filename, "w") 988 % os.path.join(os.path.dirname(output_filename), build_dir)
|
H A D | android.py | 116 output_filename, 130 output_filename: output .mk file name to write 137 gyp.common.EnsureDirExists(output_filename) 139 self.fp = open(output_filename, "w")
|
/third_party/node/deps/v8/tools/ignition/ |
H A D | bytecode_dispatches_report.py | 271 pyplot.savefig(program_options.output_filename)
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | command_line_interface.cc | 2119 std::string output_filename = location + relative_output_filenames[i]; in GenerateDependencyManifestFile() local 2120 if (output_filename.compare(0, 2, "./") == 0) { in GenerateDependencyManifestFile() 2121 output_filename = output_filename.substr(2); in GenerateDependencyManifestFile() 2123 output_filenames.push_back(output_filename); in GenerateDependencyManifestFile()
|
/third_party/ffmpeg/fftools/ |
H A D | ffprobe.c | 284 static const char *output_filename = NULL; variable 690 if (!output_filename) { in writer_open() 3720 if (output_filename) { in opt_output_file() 3723 arg, output_filename); in opt_output_file() 3728 output_filename = arg; in opt_output_file() 4127 sections, FF_ARRAY_ELEMS(sections), output_filename)) >= 0) { in main()
|