/third_party/mesa3d/src/compiler/glsl/ |
H A D | standalone.cpp | 387 _mesa_print_ir(stdout, shader->ir, NULL); in compile_shader() 588 _mesa_print_builder_for_ir(stdout, shader->ir); in standalone_compile_shader()
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | mac_tool.py | 118 stdout = subprocess.check_output(args) 123 for line in stdout.splitlines():
|
/third_party/mesa3d/src/intel/tools/ |
H A D | intel_dump_gpu.c | 226 verbose == 2 ? stdout : NULL, in dump_execbuffer2() 490 verbose == 2 ? stdout : NULL, in maybe_init()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | mac_tool.py | 118 stdout = subprocess.check_output(args) 123 for line in stdout.splitlines():
|
/third_party/icu/icu4c/source/samples/ucnv/ |
H A D | convsamp.cpp | 58 #define U_ASSERT(x) { if(U_FAILURE(x)) {fflush(stdout);fflush(stderr); fprintf(stderr, #x " == %s\n", u_errorName(x)); assert(U_SUCCESS(x)); }} 1140 fflush(stdout); in main()
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
H A D | tomoyo_new_file_test.c | 154 fflush(stdout); in stage_file_test() 171 fflush(stdout); in stage_file_test()
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_program.c | 312 nir_print_shader(nir, stdout); in lima_fs_compile_shader() 488 nir_print_shader(nir, stdout); in lima_vs_compile_shader()
|
/third_party/python/Lib/ |
H A D | codecs.py | 1123 # Make stdout translate Latin-1 output into UTF-8 output 1124 sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8')
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | gen_vk_internal_shaders.py | 349 preprocessor_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) 386 compile_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
H A D | wpng.c | 310 setmode(fileno(stdout), O_BINARY); in main() 317 if ((wpng_info.outfile = fdopen(fileno(stdout), "wb")) == NULL) { in main() 319 ": unable to reopen stdout in binary mode\n"); in main() 425 "``.png'' extension; files read from stdin are converted and sent to stdout.\n" in main()
|
/third_party/skia/third_party/externals/libwebp/imageio/ |
H A D | image_enc.c | 566 fout = use_stdout ? ImgIoUtilSetBinaryMode(stdout) in WebPSaveImage() 600 if (fout != NULL && fout != stdout) { in WebPSaveImage()
|
/third_party/skia/third_party/externals/icu/source/samples/ucnv/ |
H A D | convsamp.cpp | 58 #define U_ASSERT(x) { if(U_FAILURE(x)) {fflush(stdout);fflush(stderr); fprintf(stderr, #x " == %s\n", u_errorName(x)); assert(U_SUCCESS(x)); }} 1140 fflush(stdout); in main()
|
/third_party/skia/third_party/externals/microhttpd/src/testspdy/ |
H A D | test_new_connection.c | 424 fwrite(out, 1, outlen, stdout); in on_data_chunk_recv_callback() 430 fwrite(data, 1, len, stdout); in on_data_chunk_recv_callback()
|
/third_party/python/Lib/test/ |
H A D | test_sysconfig.py | 386 # just making sure _main() runs and returns things in the stdout 413 stdout=subprocess.PIPE, 432 stdout=subprocess.PIPE,
|
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-diff.c | 954 hists__fprintf(hists, !quiet, 0, 0, 0, stdout, in hists__process() 963 fprintf(stdout, "# Data files:\n"); in data__fprintf() 966 fprintf(stdout, "# [%d] %s %s\n", in data__fprintf() 970 fprintf(stdout, "#\n"); in data__fprintf() 1003 fprintf(stdout, "%s# Event '%s'\n#\n", first ? "" : "\n", in data_process()
|
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-diff.c | 956 hists__fprintf(hists, !quiet, 0, 0, 0, stdout, in hists__process() 965 fprintf(stdout, "# Data files:\n"); in data__fprintf() 968 fprintf(stdout, "# [%d] %s %s\n", in data__fprintf() 972 fprintf(stdout, "#\n"); in data__fprintf() 1005 fprintf(stdout, "%s# Event '%s'\n#\n", first ? "" : "\n", in data_process()
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/ |
H A D | nettest.c | 168 fprintf(stdout, "%s %s:", in log_msg() 172 vfprintf(stdout, format, args); in log_msg() 175 fflush(stdout); in log_msg() 241 fflush(stdout); in log_address() 1880 fprintf(stderr, "server: Failed to allocate buffers for stdout and stderr\n"); in ipc_child() 1884 setbuffer(stdout, outbuf, 4096); in ipc_child()
|
/third_party/lz4/programs/ |
H A D | lz4io.c | 50 #include <stdio.h> /* fprintf, fopen, fread, stdin, stdout, fflush, getchar */ 93 #define DISPLAYOUT(...) fprintf(stdout, __VA_ARGS__) 261 /* Default setting : 1 (auto: enabled on file, disabled on stdout) */ 346 DISPLAYLEVEL(4, "Using stdout for output \n"); in LZ4IO_openDstFile() 347 f = stdout; in LZ4IO_openDstFile() 348 SET_BINARY_MODE(stdout); in LZ4IO_openDstFile() 350 DISPLAYLEVEL(4, "Sparse File Support automatically disabled on stdout ;" in LZ4IO_openDstFile() 376 { int const sparseMode = (prefs->sparseFileSupport - (f==stdout)) > 0; in LZ4IO_openDstFile() 489 if (!LZ4IO_isStdout(output_filename)) fclose(foutput); /* do not close stdout */ in LZ4IO_compressFilename_Legacy() 760 if (!LZ4IO_isStdout(dstFileName)) fclose(dstFile); /* do not close stdout */ in LZ4IO_compressFilename_extRess() [all...] |
/third_party/python/Python/ |
H A D | sysmodule.c | 10 - stdin, stdout, stderr: standard file objects 601 /* Write repr(o) to sys.stdout using sys.stdout.encoding and 'backslashreplace' 602 error handler. If sys.stdout has a buffer attribute, use 603 sys.stdout.buffer.write(encoded), otherwise redecode the string and use 604 sys.stdout.write(redecoded). 671 Print an object to sys.stdout and also save it in builtins._ 700 outf = _PySys_GetAttr(tstate, &_Py_ID(stdout)); in sys_displayhook() 702 _PyErr_SetString(tstate, PyExc_RuntimeError, "lost sys.stdout"); in sys_displayhook() 708 /* repr(o) is not encodable to sys.stdout in sys_displayhook() 3460 sys_write(&_Py_ID(stdout), stdout, format, va); PySys_WriteStdout() local 3503 sys_format(&_Py_ID(stdout), stdout, format, va); PySys_FormatStdout() local [all...] |
/third_party/python/Tools/scripts/ |
H A D | texi2html.py | 1845 def dumpfiles(self, outfile=sys.stdout): 1850 def dumpnodes(self, outfile=sys.stdout): 1861 def dumpnode(self, node, indent=0, outfile=sys.stdout): 1886 def dumpmenu(self, menu, indent=0, outfile=sys.stdout): 1909 def dumpindex(self, outfile=sys.stdout):
|
/third_party/glfw/tests/ |
H A D | triangle-vulkan.c | 65 fflush(stdout); \ 252 fflush(stdout); in dbgFunc() 1476 fflush(stdout); in demo_error_callback() 1528 fflush(stdout); in demo_create_window() 1966 fflush(stdout); in demo_init_connection() 1972 fflush(stdout); in demo_init_connection()
|
/kernel/linux/linux-5.10/arch/um/os-Linux/ |
H A D | start_up.c | 97 fflush(stdout); in start_ptraced_child()
|
/kernel/linux/linux-5.10/tools/testing/selftests/ptp/ |
H A D | testptp.c | 375 fflush(stdout); in main()
|
/kernel/linux/linux-5.10/tools/usb/ |
H A D | testusb.c | 333 fflush (stdout); in handle_testdev()
|
/kernel/linux/linux-5.10/tools/testing/selftests/clone3/ |
H A D | clone3_set_tid.c | 35 fflush(stdout); in child_exit()
|