| /external/e2fsprogs/lib/et/ |
| D | et_c.awk | 3 outfn = outfile 72 /^[ \t]*(error_table|et)[ \t]+[a-zA-Z][a-zA-Z0-9_]+/ { 107 # figure out: table_number_base -= 256*256*256*256 116 tab_base_low = sub_low - tab_base_low; 117 tab_base_high = sub_high - tab_base_high; 118 tab_base_sign = -1; 121 tab_base_high-- 124 print "/*" > outfile 125 print " * " outfn ":" > outfile 126 print " * This file is automatically generated; please do not edit it." > outfile [all …]
|
| D | et_h.awk | 3 outfn = outfile 72 /^[ \t]*(error_table|et)[ \t]+[a-zA-Z][a-zA-Z0-9_]+/ { 106 # figure out: table_number_base -= 256*256*256*256 115 tab_base_low = sub_low - tab_base_low; 116 tab_base_high = sub_high - tab_base_high; 117 tab_base_sign = -1; 120 tab_base_high-- 128 print "/*" > outfile 129 print " * " outfn ":" > outfile 130 print " * This file is automatically generated; please do not edit it." > outfile [all …]
|
| /external/libcups/man/ |
| D | mantohtml.c | 4 * Copyright 2007-2017 by Apple Inc. 5 * Copyright 2004-2006 by Easy Software Products. 14 #include <cups/string-private.h> 15 #include <cups/array-private.h> 39 * 'main()' - Convert a man page to HTML. 42 int /* O - Exit status */ 43 main(int argc, /* I - Number of command-line args */ in main() 44 char *argv[]) /* I - Command-line arguments */ in main() 47 *outfile; /* Output file */ in main() local 53 int section = -1, /* Man page section */ in main() [all …]
|
| /external/e2fsprogs/lib/ss/ |
| D | ct_c.awk | 3 printf "/* %s.c - automatically generated from %s.ct */\n", \ 4 rootname, rootname > outfile 5 print "#include <ss/ss.h>" > outfile 6 print "" >outfile 13 printf "static char const * const ssu%05d[] = {\n", cmdnum > outfile 17 subr = substr($0, 6, length($0)-5) 21 help = substr($0, 6, length($0)-5) 25 cmd = substr($0, 6, length($0)-5) 26 printf "%s\"%s\",\n", cmdtab, cmd > outfile 31 opt = substr($0, 6, length($0)-5) [all …]
|
| /external/python/cpython3/PCbuild/ |
| D | _freeze_module.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 70 <ProjectGuid>{19C0C13F-47CA-4432-AFF3-799A296A4DDC}</ProjectGuid> 224 <ClCompile Include="..\Python\Python-ast.c" /> 226 <ClCompile Include="..\Python\Python-tokenize.c" /> 239 <!-- BEGIN frozen modules --> 243 <OutFile>$(PySourcePath)Python\frozen_modules\importlib._bootstrap.h</OutFile> 248 <OutFile>$(PySourcePath)Python\frozen_modules\importlib._bootstrap_external.h</OutFile> 253 <OutFile>$(PySourcePath)Python\frozen_modules\zipimport.h</OutFile> 258 <OutFile>$(PySourcePath)Python\frozen_modules\abc.h</OutFile> 263 <OutFile>$(PySourcePath)Python\frozen_modules\codecs.h</OutFile> [all …]
|
| /external/skia/tools/skpbench/ |
| D | sheet.py | 5 # Use of this source code is governed by a BSD-style license that can be 28 …https://chrome.google.com/webstore/detail/office-editing-for-docs-s/gbkeegbaiigmenfmjfclcdgdpimamg… 32 (3) Run parseskpbench.py with the --open flag. 36 __argparse.add_argument('-r', '--result', 39 __argparse.add_argument('-f', '--force', 41 __argparse.add_argument('-o', '--open', 44 __argparse.add_argument('-n', '--name', 45 default='skpbench_%s' % datetime.now().strftime('%Y-%m-%d_%H.%M.%S.csv'), 46 help="if using --open, a name for the temp file") 48 nargs='+', help="source files that contain skpbench results ('-' for stdin)") [all …]
|
| /external/mesa3d/src/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
| D | rubygenerator.py | 1 #!/usr/bin/python3 -i 3 # Copyright 2013-2023 The Khronos Group Inc. 5 # SPDX-License-Identifier: Apache-2.0 20 """RubyOutputGenerator - subclass of ScriptOutputGenerator. 39 write(self.beginDict(name), file=self.outFile) 45 write(f'{enquote(key)} => {value},', file=self.outFile) 46 write(self.endDict(), file=self.outFile) 55 write('def {}'.format(name), file=self.outFile) 56 write(' @{}'.format(name), file=self.outFile) 57 write('end', file=self.outFile) [all …]
|
| /external/linux-kselftest/tools/testing/selftests/drivers/net/netdevsim/ |
| D | fib_notifications.sh | 2 # SPDX-License-Identifier: GPL-2.0 28 local outfile=$1; shift 34 head -n 1 $outfile | grep -q "rt_offload_failed" 35 if [[ $? -eq 0 ]]; then 39 head -n 2 $outfile | tail -n 1 | grep -q "rt_offload_failed" 44 local outfile=$1; shift 49 head -n 1 $outfile | grep -q "rt_trap" 50 if [[ $? -eq 0 ]]; then 54 head -n 2 $outfile | tail -n 1 | grep -q "rt_trap" 59 local outfile=$1; shift [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | mimify.rst | 2 :mod:`mimify` --- MIME processing of mail messages 16 so-called multipart message. Each part is treated separately. Mimifying (a part 17 of) a message entails encoding the message as quoted-printable if it contains 18 any characters that cannot be represented using 7-bit ASCII. Unmimifying (a 19 part of) a message entails undoing the quoted-printable encoding. Mimify and 28 The modules defines the following user-callable functions and user-settable 32 .. function:: mimify(infile, outfile) 34 Copy the message in *infile* to *outfile*, converting parts to quoted-printable 35 and adding MIME mail headers when necessary. *infile* and *outfile* can be file 37 or a :meth:`write` method (for *outfile*)) or strings naming the files. If [all …]
|
| /external/bzip2/ |
| D | format.pl | 1 #!/usr/bin/perl -w 3 # ------------------------------------------------------------------ 5 # lossless, block-sorting data compression. 8 # Copyright (C) 1996-2019 Julian Seward <jseward@acm.org> 15 # ------------------------------------------------------------------ 27 unless -f $infile; 29 if (! -r $infile) { 36 #my $outfile = 'fmt-manual.xml'; 37 my $outfile = shift; 38 #print "Infile: $infile, Outfile: $outfile\n"; [all …]
|
| /external/vboot_reference/futility/ |
| D | cmd_vbutil_key.c | 2 * Use of this source code is governed by a BSD-style license that can be 46 "Usage: " MYNAME " %s --pack <outfile> [PARAMETERS]\n" in print_help() 49 " --key <infile> RSA key file (.keyb or .pem)\n" in print_help() 50 " --version <number> Key version number " in print_help() 53 " --algorithm <number> " in print_help() 62 "Usage: " MYNAME " %s --unpack <infile>\n" in print_help() 65 " --copyto <file> " in print_help() 70 static int Pack(const char *infile, const char *outfile, uint64_t algorithm, in Pack() argument 76 if (!infile || !outfile) { in Pack() 77 fprintf(stderr, "vbutil_key: Must specify --in and --out\n"); in Pack() [all …]
|
| /external/python/cpython3/Programs/ |
| D | _freeze_module.py | 15 header = "/* Auto-generated by Programs/_freeze_module.py */" 18 def read_text(inpath: str) -> bytes: 23 def compile_and_marshal(name: str, text: bytes) -> bytes: 30 def get_varname(name: str, prefix: str) -> str: 34 def write_code(outfile, marshalled: bytes, varname: str) -> None: argument 37 outfile.write(f"const unsigned char {varname}[] = {{\n") 40 outfile.write(" ") 41 outfile.write(",".join(str(i) for i in marshalled[n : n + 16])) 42 outfile.write(",\n") 43 outfile.write("};\n") [all …]
|
| /external/libjpeg-turbo/ |
| D | tjbenchtest.java.in | 3 set -u 4 set -e 11 if [ -d $OUTDIR ]; then 12 rm -rf $OUTDIR 24 OUTDIR=`mktemp -d /tmp/__tjbenchtest_java_output.XXXXXX` 27 JAVAARGS="-cp $EXEDIR/java/turbojpeg.jar -Djava.library.path=$EXEDIR" 33 if [ -d $OUTDIR ]; then 34 rm -rf $OUTDIR 36 mkdir -p $OUTDIR 38 while [ $# -gt 0 ]; do [all …]
|
| /external/pcre/ |
| D | perltest.sh | 5 # argument is -perl then the second is taken as the Perl command to use, and 6 # both are then removed. If the next argument is "-w", Perl is called with 7 # "-w", which turns on its warning mode. 10 # running UTF-8 tests, but *not* for non-utf8 tests. (The "require" would 11 # actually be OK for non-utf8-tests, but is not always installed, so this way 15 # Perl script to Perl through a pipe. If the next argument is "-utf8", a 28 if [ $# -gt 1 -a "$1" = "-perl" ] ; then 34 if [ $# -gt 0 -a "$1" = "-w" ] ; then 35 perlarg="-w" 39 if [ $# -gt 0 -a "$1" = "-utf8" ] ; then [all …]
|
| /external/icu/icu4c/source/test/testdata/ |
| D | BUILDRULES.py | 58 # The -q option is there on purpose, so we don't see it normally. 59 # TODO: Use option -k? 64 output_files = [OutFile("%s.res" % bn) for bn in basenames], 66 args = "-q -i {LIBRARY_DATA_DIR} -s {IN_DIR} -d {OUT_DIR} {INPUT_FILE}", 75 output_files = [OutFile("encoded.res")], 77 args = "-s {IN_DIR} -eUTF-16BE -d {OUT_DIR} {INPUT_FILES[0]}", 86 args = "-s {IN_DIR} -d {TMP_DIR} {INPUT_FILES[0]}", 93 output_files = [OutFile("filtertest.res")], 95 args = "-s {IN_DIR} -d {OUT_DIR} -i {OUT_DIR} " 96 "--filterDir {IN_DIR}/filters filtertest.txt", [all …]
|
| /external/cronet/third_party/icu/source/test/testdata/ |
| D | BUILDRULES.py | 58 # The -q option is there on purpose, so we don't see it normally. 59 # TODO: Use option -k? 64 output_files = [OutFile("%s.res" % bn) for bn in basenames], 66 args = "-q -s {IN_DIR} -d {OUT_DIR} {INPUT_FILE}", 75 output_files = [OutFile("encoded.res")], 77 args = "-s {IN_DIR} -eUTF-16BE -d {OUT_DIR} {INPUT_FILES[0]}", 86 args = "-s {IN_DIR} -d {TMP_DIR} {INPUT_FILES[0]}", 93 output_files = [OutFile("filtertest.res")], 95 args = "-s {IN_DIR} -d {OUT_DIR} -i {OUT_DIR} " 96 "--filterDir {IN_DIR}/filters filtertest.txt", [all …]
|
| /external/libpcap/testprogs/fuzz/ |
| D | fuzz_pcap.c | 8 FILE * outfile = NULL; variable 15 return -1; in bufferToFile() 21 return -2; in bufferToFile() 25 return -3; in bufferToFile() 32 if (outfile != NULL) { in fuzz_openFile() 33 fclose(outfile); in fuzz_openFile() 35 outfile = fopen(name, "w"); in fuzz_openFile() 47 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 48 outfile = fopen("/dev/null", "w"); in LLVMFuzzerTestOneInput() 49 if (outfile == NULL) { in LLVMFuzzerTestOneInput() [all …]
|
| D | fuzz_both.c | 9 FILE * outfile = NULL; variable 16 return -1; in bufferToFile() 22 return -2; in bufferToFile() 26 return -3; in bufferToFile() 33 if (outfile != NULL) { in fuzz_openFile() 34 fclose(outfile); in fuzz_openFile() 36 outfile = fopen(name, "w"); in fuzz_openFile() 51 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 52 outfile = fopen("/dev/null", "w"); in LLVMFuzzerTestOneInput() 53 if (outfile == NULL) { in LLVMFuzzerTestOneInput() [all …]
|
| /external/icu/icu4c/source/tools/gensprep/ |
| D | filterRFC3454.pl | 4 # Copyright (c) 2001-2015 International Business Machines 9 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table 32 #--------------------------------------------------------------------- 37 "--sourcedir=s" => \$sourceDir, 38 "--destdir=s" => \$destDir, 39 "--src-filename=s" => \$srcFileName, 40 "--dest-filename=s" => \$destFileName, 41 "--A1" => \$a1, 42 "--B1" => \$b1, 43 "--B2" => \$b2, [all …]
|
| /external/cronet/third_party/icu/source/tools/gensprep/ |
| D | filterRFC3454.pl | 4 # Copyright (c) 2001-2015 International Business Machines 9 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table 32 #--------------------------------------------------------------------- 37 "--sourcedir=s" => \$sourceDir, 38 "--destdir=s" => \$destDir, 39 "--src-filename=s" => \$srcFileName, 40 "--dest-filename=s" => \$destFileName, 41 "--A1" => \$a1, 42 "--B1" => \$b1, 43 "--B2" => \$b2, [all …]
|
| /external/webrtc/modules/audio_processing/test/ |
| D | apmtest.m | 4 % Use of this source code is governed by a BSD-style license 109 outfile = ['out']; variable 111 opt = ['-ec 1 -agc 2 -nc 2 -vad 3']; 113 opt = ['--no_progress -hpf' ... 114 ' -aec --drift_compensation -agc --fixed_digital' ... 115 ' -ns --ns_moderate -vad']; 118 elseif strcmp(tests{i}, 'apm-swb') 120 testdir = ['apm-swb/']; 121 outfile = ['out']; variable 123 opt = ['-fs 32000 -ec 1 -agc 2 -nc 2']; [all …]
|
| /external/libcups/ppdc/ |
| D | ppdmerge.cxx | 4 // Copyright © 2007-2018 by Apple Inc. 5 // Copyright © 2002-2007 by Easy Software Products. 15 #include <cups/cups-private.h> 16 #include <cups/ppd-private.h> 29 // 'main()' - Main entry for the PPD merge utility. 32 int // O - Exit status 33 main(int argc, // I - Number of command-line arguments in main() 34 char *argv[]) // I - Command-line arguments in main() 44 *outfile; // Output file in main() local 52 // Scan the command-line... in main() [all …]
|
| /external/ltp/testcases/kernel/io/direct_io/ |
| D | diotest1.c | 26 * diotest1 [-b bufsize] [-n numblks] [-i infile] [-o outfile] 56 static char outfile[LEN]; /* Output file. Default "outfile" */ variable 65 "Usage: diotest1 [-b bufsize] [-n numblks] [-i infile] [-o outfile]\n"); in prg_usage() 88 strcpy(outfile, "outfile"); /* Default outfile file */ in main() 89 while ((i = getopt(argc, argv, "b:n:i:o:")) != -1) { in main() 112 strcpy(outfile, optarg); in main() 130 fd2 = SAFE_OPEN(cleanup, outfile, O_DIRECT | O_RDWR | O_CREAT, 0666); in main() 143 /* Copy infile to outfile using direct read and direct write */ in main() 157 if (filecmp(infile, outfile) != 0) { in main() 159 infile, outfile); in main()
|
| /external/sdv/vsomeip/third_party/boost/filesystem/doc/ |
| D | path_table.cpp | 1 // Generate an HTML table showing path decomposition ---------------------------------// 25 std::ofstream outfile; variable 102 // do_cell ---------------------------------------------------------------// 106 string temp = column[i]->cell_value(path(test_case)); in do_cell() 108 outfile << "<td>"; in do_cell() 110 value = "<font size=\"-1\"><i>empty</i></font>"; in do_cell() 123 value.insert(0, "<span style=\"background-color: #CCFFCC\">"); in do_cell() 126 outfile << value; in do_cell() 128 outfile << "</td>\n"; in do_cell() 131 // do_row ------------------------------------------------------------------// [all …]
|
| /external/libvpx/build/make/ |
| D | gen_msvs_sln.sh | 5 ## Use of this source code is governed by a BSD-style license 26 --help Print this message 27 --out=outfile Redirect output to a file 28 --ver=version Version (14-17) of visual studio to generate for 29 --target=isa-os-cc Target specifier 36 [ -f "${outfile}" ] && rm -f ${outfile}{,.mk} 42 echo "See ${self_basename} --help for available options." >&2 43 [ -f "${outfile}" ] && rm -f ${outfile}{,.mk} 70 cur_config_list=`grep -B1 'Label="Configuration"' $file | 71 grep Condition | cut -d\' -f4` [all …]
|