/third_party/openssl/demos/cipher/ |
H A D | ariacbc.c | 67 BIO_dump_fp(stdout, cbc_pt, sizeof(cbc_pt)); in aria_cbc_encrypt() 95 BIO_dump_fp(stdout, outbuf, outlen); in aria_cbc_encrypt() 124 BIO_dump_fp(stdout, cbc_ct, sizeof(cbc_ct)); in aria_cbc_decrypt() 151 BIO_dump_fp(stdout, outbuf, outlen); in aria_cbc_decrypt()
|
/third_party/openssl/demos/signature/ |
H A D | EVP_Signature_demo.c | 136 fprintf(stdout, "Generating signature:\n"); in demo_sign() 137 BIO_dump_indent_fp(stdout, sig_value, sig_len, 2); in demo_sign() 138 fprintf(stdout, "\n"); in demo_sign() 195 fprintf(stdout, "Signature verified.\n"); in demo_verify()
|
/third_party/openssl/ohos_lite/ |
H A D | e_os.h | 182 # undef stdout macro 186 # define stdout (&__iob_func()[1]) macro 190 # undef stdout macro 201 # define stdout (&_imp___iob[1]) macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | check_copyright.py | 142 sys.stdout.write(copyright) 143 sys.stdout.write(licensed) 159 sys.stdout.write(licensed) 161 sys.stdout.write(line)
|
/third_party/skia/third_party/externals/icu/source/samples/coll/ |
H A D | coll.cpp | 257 fprintf(stdout, "Comparing source=%s and target=%s\n", opt_source, in main() 261 fprintf(stdout, "source is equals to target\n"); in main() 264 fprintf(stdout, "source is less than target\n"); in main() 267 fprintf(stdout, "source is greater than target\n"); in main()
|
/third_party/skia/infra/bots/recipe_modules/vars/ |
H A D | api.py | 104 stdout=self.m.raw_io.output()).stdout.decode('utf-8') 116 stdout=self.m.raw_io.output()).stdout.decode('utf-8')
|
/third_party/rust/crates/minimal-lexical/scripts/ |
H A D | timings.py | 46 stdout=subprocess.DEVNULL, 64 stdout=subprocess.PIPE, 68 for line in iter(process.stdout.readline, b''): 74 process.stdout.close()
|
/third_party/spirv-tools/utils/ |
H A D | check_copyright.py | 161 sys.stdout.write(copyright) 162 sys.stdout.write(licensed) 178 sys.stdout.write(licensed) 180 sys.stdout.write(line)
|
/third_party/zlib/examples/ |
H A D | fitblk.c | 126 /* compress from stdin to fixed-size block on stdout */ 164 /* write block to stdout */ in main() 166 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout)) in main() 217 /* done -- write block to stdout */ in main() 219 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout)) in main()
|
H A D | zpipe.c | 158 if (ferror(stdout)) in zerr() 159 fputs("error writing stdout\n", stderr); in zerr() 175 /* compress or decompress from stdin to stdout */ 182 SET_BINARY_MODE(stdout); in main() 186 ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION); in main() 194 ret = inf(stdin, stdout); in main()
|
/third_party/littlefs/scripts/ |
H A D | tracebd.py | 45 # allow '-' for stdin/stdout 50 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 93 sys.stdout.write('\n') 100 sys.stdout.write('\r') 102 sys.stdout.write('\x1b[%dA' % (shrink-1-i)) 103 sys.stdout.write('\x1b[K') 105 sys.stdout.write('\x1b[%dB' % (shrink-1-i)) 106 sys.stdout.write('\x1b[%dA' % shrink) 111 sys.stdout.write('\r') 113 sys.stdout [all...] |
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | test262.py | 71 result.add_option("--logname", help="Filename to save stdout to") 137 def __init__(self, exit_code, stdout, stderr, case): 139 self.stdout = stdout 155 self.WriteOutput(sys.stdout) 164 out = self.stdout.strip() 189 out = self.stdout.strip().decode('utf-8') 213 return 'Test262:AsyncTestComplete' not in self.stdout 226 return self.stdout 340 stdout [all...] |
/third_party/python/Lib/lib2to3/tests/data/ |
H A D | py2_test_grammar.py | 343 # Can't test printing to real stdout without comparing output 345 save_stdout = sys.stdout 346 sys.stdout = StringIO.StringIO() 355 print >> sys.stdout, 1, 2, 3 356 print >> sys.stdout, 1, 2, 3, 357 print >> sys.stdout 358 print >> sys.stdout, 0 or 1, 0 or 1, 359 print >> sys.stdout, 0 or 1 374 oldstdout = sys.stdout 375 sys.stdout [all...] |
/third_party/skia/third_party/externals/microhttpd/src/spdy2http/ |
H A D | proxy.c | 91 fprintf(stdout, "%i:%s\n", __LINE__, msg);\ 92 fflush(stdout);\ 98 fprintf(stdout, "%i\n", __LINE__);\ 99 fprintf(stdout, fmt,##__VA_ARGS__);\ 100 fprintf(stdout, "\n");\ 101 fflush(stdout);\ 108 fprintf(stdout, "%i:%s\n", __LINE__, msg);\ 109 fflush(stdout);\ 117 fprintf(stdout, "%i\n", __LINE__);\ 118 fprintf(stdout, fm [all...] |
/third_party/node/test/fixtures/ |
H A D | should_exit.js | 26 process.stdout.write('keep alive\n'); 28 process.stdout.write('start\n');
|
H A D | catch-stdout-error.js | 24 process.stdout.write('Hello, world\n'); 33 process.stdout.on('error', function(er) {
|
H A D | echo.js | 25 process.stdout.write('hello world\r\n'); 30 process.stdout.write(data.toString());
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
H A D | radeonsi-run-tests.py | 195 for line in p.stdout.decode().split("\n"): 231 for line in p.stdout.decode().split("\n"): 286 args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env 289 line = proc.stdout.readline().decode() 296 sys.stdout.write(next(spin)) 297 sys.stdout.flush() 298 sys.stdout.write("\b") 308 sys.stdout.write(" ... ")
|
/third_party/mesa3d/src/intel/tools/ |
H A D | error2aub.c | 311 aub.verbose_log_file = stdout; in main() 428 fprintf(stdout, "BOs found:\n"); in main() 430 fprintf(stdout, "\t type=%i addr=0x%016" PRIx64 " size=%" PRIu64 "\n", in main() 482 fprintf(stdout, "engine start=0x%x head/tail=0x%x/0x%x\n", in main() 491 fprintf(stdout, "context dump:\n"); in main() 494 fprintf(stdout, "\n 0x%08" PRIx64 ": ", bo_entry->addr + 8192 + i * 4); in main() 495 fprintf(stdout, "0x%08x ", context[i]); in main() 497 fprintf(stdout, "\n"); in main()
|
/third_party/ltp/testcases/kernel/sched/sched_stress/ |
H A D | sched_driver.c | 173 fflush(stdout); in main() 201 fflush(stdout); in main() 208 fflush(stdout); in main() 223 fflush(stdout); in main() 226 fflush(stdout); in main() 232 fflush(stdout); in main() 245 fflush(stdout); in main() 488 fflush(stdout); 529 fflush(stdout); in display_line()
|
/third_party/node/test/wasi/c/ |
H A D | stdin.c | 9 if (fputs(x, stdout) == EOF) { in main() 10 return ferror(stdout); in main()
|
/third_party/mesa3d/src/gallium/drivers/lima/standalone/ |
H A D | glsl.cpp | 32 _mesa_print_ir(stdout, ir, NULL); in lima_do_glsl_optimizations() 34 _mesa_print_ir(stdout, ir, NULL); in lima_do_glsl_optimizations()
|
/third_party/mesa3d/.gitlab-ci/bare-metal/ |
H A D | telnet-buffer.py | 24 # Tiny script to read bytes from telnet, and write the output to stdout, with a 38 sys.stdout.buffer.write(bytes) 39 sys.stdout.flush()
|
/third_party/musl/porting/liteos_a/kernel/src/include/ |
H A D | stdio.h | 9 #undef stdout macro 17 #define stdout (&__stdout_FILE) macro
|
/third_party/musl/src/include/ |
H A D | stdio.h | 9 #undef stdout macro 17 #define stdout (&__stdout_FILE) macro
|