| /third_party/nghttp2/src/ |
| D | app_helper.cc | 2 * nghttp2 - HTTP/2 C Library 134 FILE *outfile = stdout; variable 137 void set_output(FILE *file) { outfile = file; } in set_output() 140 void print_frame_attr_indent() { fprintf(outfile, " "); } in print_frame_attr_indent() 153 fprintf(outfile, "%s%s%s: %s\n", ansi_esc("\033[1;34m"), nv->name, in print_nv() 154 ansi_escend(), nv->value); in print_nv() 170 fprintf(outfile, "%s[%3ld.%03ld]%s", ansi_esc("\033[33m"), in print_timer() 177 fprintf(outfile, "<length=%zu, flags=0x%02x, stream_id=%d>\n", hd.length, in print_frame_hd() 245 fprintf(outfile, "; %s\n", s.c_str()); in print_flags() 259 fprintf(outfile, "%s%s%s frame ", frame_name_ansi_esc(ptype), in print_frame() [all …]
|
| /third_party/gn/examples/rust_example/build/ |
| D | BUILD.gn | 4 outfile = "{{target_out_dir}}/{{crate_name}}" 5 …c --crate-name {{crate_name}} {{source}} --crate-type {{crate_type}} --emit=dep-info=$depfile,link… 6 description = "RUST $outfile" 7 outputs = [ outfile ] 12 outfile = "{{target_out_dir}}/{{crate_name}}.a" 13 …c --crate-name {{crate_name}} {{source}} --crate-type {{crate_type}} --emit=dep-info=$depfile,link… 14 description = "RUST $outfile" 15 outputs = [ outfile ] 20 outfile = "{{target_out_dir}}/lib{{crate_name}}.rlib" 21 …c --crate-name {{crate_name}} {{source}} --crate-type {{crate_type}} --emit=dep-info=$depfile,link… [all …]
|
| /third_party/libinput/tools/ |
| D | make-ptraccel-graphs.sh | 3 tool=`dirname $0`/../build/ptraccel-debug 6 if [[ -e '$tool' ]]; then 10 speeds="-1 -0.75 -0.5 -0.25 0 0.5 1" 12 outfile="ptraccel-linear" 14 $tool --mode=accel --dpi=1000 --filter=linear --speed=$speed > $outfile-$speed.gnuplot 18 set output "$outfile.svg" 25 fname(s)=sprintf("$outfile-%s.gnuplot", s) 30 outfile="ptraccel-low-dpi" 33 $tool --mode=accel --dpi=$dpi --filter=low-dpi > $outfile-$dpi.gnuplot 38 set output "$outfile.svg" [all …]
|
| /third_party/python/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 …]
|
| /third_party/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 …]
|
| /third_party/libsnd/tests/ |
| D | header_test.tpl | 3 ** Copyright (C) 2001-2017 Erik de Castro Lopo <erikd@mega-nerd.com> 17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 62 /* Force the start of this buffer to be double aligned. Sparc-solaris will 76 printf (" wav - test WAV file peak chunk\n") ; 77 printf (" aiff - test AIFF file PEAK chunk\n") ; 78 printf (" all - perform all tests\n") ; 214 /*-update_seek_short_test ("header_short.voc", SF_FORMAT_VOC) ;-*/ 220 /*-update_seek_short_test ("header_short.sds", SF_FORMAT_SDS) ;-*/ 255 { SNDFILE *outfile, *infile ; 264 outfile = test_open_file_or_die (filename, write_mode, &sfinfo, SF_TRUE, __LINE__) ; [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
| D | rubygenerator.py | 1 #!/usr/bin/python3 -i 3 # Copyright 2013-2024 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 …]
|
| D | cgenerator.py | 1 #!/usr/bin/python3 -i 3 # Copyright 2013-2024 The Khronos Group Inc. 5 # SPDX-License-Identifier: Apache-2.0 16 """CGeneratorOptions - subclass of GeneratorOptions. 47 - prefixText - list of strings to prefix generated header with 49 - protectFile - True if multiple inclusion protection should be 51 - protectFeature - True if #ifndef..#endif protection should be 53 - genFuncPointers - True if function pointer typedefs should be 55 - protectProto - If conditional protection should be generated 57 to require opt-in (#ifdef protectProtoStr) or '#ifndef' [all …]
|
| D | pygenerator.py | 1 #!/usr/bin/python3 -i 3 # Copyright 2013-2024 The Khronos Group Inc. 5 # SPDX-License-Identifier: Apache-2.0 12 """PyOutputGenerator - subclass of ScriptOutputGenerator. 31 write(self.beginDict(name), file=self.outFile) 37 write(f'{enquote(key)} : {value},', file=self.outFile) 38 write(self.endDict(), file=self.outFile) 50 # Could just print(dict) but that is not human-readable 71 # human-readable and stable-ordered 72 write(self.beginDict('mapDict'), file=self.outFile) [all …]
|
| D | jsgenerator.py | 1 #!/usr/bin/python3 -i 2 # Copyright 2013-2024 The Khronos Group Inc. 3 # SPDX-License-Identifier: Apache-2.0 16 """JSOutputGenerator - subclass of ScriptOutputGenerator. 38 write(self.beginDict(name), file=self.outFile) 44 write(f'{enquote(key)} : {value},', file=self.outFile) 45 write(self.endDict(), file=self.outFile) 57 # Could just print(dict) but that is not human-readable 77 write(self.beginDict('mapDict'), file=self.outFile) 81 file=self.outFile) [all …]
|
| /third_party/ffmpeg/tools/ |
| D | graph2dot.c | 2 * Copyright (c) 2008-2010 Stefano Sabatini 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 43 "-i INFILE set INFILE as input file, stdin if omitted\n" in usage() 44 "-o OUTFILE set OUTFILE as output file, stdout if omitted\n" in usage() 45 "-h print this help\n"); in usage() 53 static void print_digraph(FILE *outfile, AVFilterGraph *graph) in print_digraph() argument 57 fprintf(outfile, "digraph G {\n"); in print_digraph() 58 fprintf(outfile, "node [shape=box]\n"); in print_digraph() 59 fprintf(outfile, "rankdir=LR\n"); in print_digraph() 61 for (i = 0; i < graph->nb_filters; i++) { in print_digraph() [all …]
|
| /third_party/skia/third_party/externals/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 …]
|
| D | tjbenchtest.in | 3 set -u 4 set -e 11 if [ -d $OUTDIR ]; then 12 rm -rf $OUTDIR 25 OUTDIR=`mktemp -d /tmp/__tjbenchtest_output.XXXXXX` 33 if [ "$EXT" = "bmp" ]; then BMPARG=-bmp; fi 35 if [ -d $OUTDIR ]; then 36 rm -rf $OUTDIR 38 mkdir -p $OUTDIR 40 while [ $# -gt 0 ]; do [all …]
|
| /third_party/libsnd/programs/ |
| D | common.c | 2 ** Copyright (C) 1999-2019 Erik de Castro Lopo <erikd@mega-nerd.com> 50 sfe_copy_data_fp (SNDFILE *outfile, SNDFILE *infile, int channels, int normalize) in sfe_copy_data_fp() argument 64 sf_writef_double (outfile, data, readcount) ; in sfe_copy_data_fp() 78 sf_writef_double (outfile, data, readcount) ; in sfe_copy_data_fp() 86 sfe_copy_data_int (SNDFILE *outfile, SNDFILE *infile, int channels) in sfe_copy_data_int() argument 95 sf_writef_int (outfile, data, readcount) ; in sfe_copy_data_int() 105 merge_broadcast_info (SNDFILE * infile, SNDFILE * outfile, int format, const METADATA_INFO * info) in merge_broadcast_info() argument 127 "Warning : The EBU Technical Recommendation R68-2000 states that the only\n" in merge_broadcast_info() 135 { if (infile == outfile) in merge_broadcast_info() 137 "Error : Attempting in-place broadcast info update, but file does not\n" in merge_broadcast_info() [all …]
|
| /third_party/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 -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 …]
|
| /third_party/pcre2/pcre2/ |
| 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 …]
|
| /third_party/skia/third_party/externals/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 …]
|
| /third_party/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 …]
|
| /third_party/python/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 …]
|
| /third_party/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()
|
| /third_party/elfutils/libcpu/ |
| D | i386_parse.y | 207 extern FILE *outfile; 262 { new_bitfield ($2, -1); } 264 { new_bitfield ($2, -2); } 268 newp->from = $2; 269 newp->to = $3; 286 if ($3 != NULL && strcmp ($3->name, "RE") != 0 287 && strcmp ($3->name, "R") != 0) 290 i386_lineno - 1); 300 if (strcmp ($3->name, "RE") == 0) 301 newp->repe = 1; [all …]
|
| /third_party/vulkan-headers/registry/ |
| D | cgenerator.py | 1 #!/usr/bin/python3 -i 3 # Copyright 2013-2024 The Khronos Group Inc. 5 # SPDX-License-Identifier: Apache-2.0 16 """CGeneratorOptions - subclass of GeneratorOptions. 47 - prefixText - list of strings to prefix generated header with 49 - protectFile - True if multiple inclusion protection should be 51 - protectFeature - True if #ifndef..#endif protection should be 53 - genFuncPointers - True if function pointer typedefs should be 55 - protectProto - If conditional protection should be generated 57 to require opt-in (#ifdef protectProtoStr) or '#ifndef' [all …]
|
| /third_party/libsnd/examples/ |
| D | sndfile-to-text.c | 2 ** Copyright (C) 2008-2016 Erik de Castro Lopo <erikd@mega-nerd.com> 55 { printf ("\nUsage : %s [--full-precision] <input file> <output file>\n", progname) ; in print_usage() 64 convert_to_text (SNDFILE * infile, FILE * outfile, int channels, int full_precision) in convert_to_text() argument 81 fprintf (outfile, " %.*e", OP_DBL_Digs - 1, buf [k * channels + m]) ; in convert_to_text() 83 fprintf (outfile, " % 12.10f", buf [k * channels + m]) ; in convert_to_text() 84 fprintf (outfile, "\n") ; in convert_to_text() 97 FILE *outfile = NULL ; in main() local 107 if (!strcmp ("--full-precision", argv [3])) in main() 129 if (infilename [0] == '-') in main() 135 if (outfilename [0] == '-') in main() [all …]
|
| /third_party/python/Lib/test/test_json/ |
| D | test_tool.py | 18 ],\t"d-shtaeou",\r"d-nthiouh", 19 "i-vhbjkhnth", {"nifty":87}, {"morefield" :\tfalse,"field" 32 "d-shtaeou", 33 "d-nthiouh", 34 "i-vhbjkhnth", 54 "d-shtaeou", 55 "d-nthiouh", 56 "i-vhbjkhnth", 90 args = sys.executable, '-m', 'json.tool' 97 with open(infile, "w", encoding="utf-8") as fp: [all …]
|
| /third_party/toybox/scripts/ |
| D | mkstatus.py | 24 stuff,blah=readit(["sed","-n", 's/<span id=\\([a-z_]*\\)>/\\1 /;t good;d;:good;h;:loop;n;s@</span>@… 26 blah,pending=readit(["sed -n 's/[^ \\t].*TOY(\\([^,]*\\),.*/\\1/p' toys/pending/*.c"], 1) 27 blah,version=readit(["git","describe","--tags"]) 52 …("lsb", '<a href="http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/… 99 outfile=open("www/status.gen", "w") variable 100 outfile.write("<h1>Status of toybox %s</h1>\n" % version[0]); 101 outfile.write("<h3>Legend: [posix] <lsb> (development) {android}\n") 102 outfile.write("=klibc= #sash# @sbase@ *beastiebox* $tizen$ %shell% +request+ other\n") 103 outfile.write("<strike>pending</strike></h3>\n"); 105 outfile.write("<a name=done><h2><a href=#done>Completed</a></h2><blockquote><p>%s</p></blockquote>\… [all …]
|