/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/ |
H A D | gen.c | 247 fprintf(stdout, "\n#define %s \\\n", name); in doswitch() 248 fprintf(stdout, "\tswitch (%s) { \\\n" /*}*/, tsw); in doswitch() 253 fprintf(stdout, "\t\tdefault: break; \\\n"); in doswitch() 255 fprintf(stdout, "\t\tdefault: %s; break; \\\n", in doswitch() 258 fputs(/*{*/ "\t\t} \\\n", stdout); in doswitch() 259 fputs("\t\tbreak; \\\n", stdout); in doswitch() 263 fprintf(stdout, "\tcase %d: switch (%s) { \\\n" /*}*/, in doswitch() 268 fprintf(stdout, "\tcase %d:%s %s_%s(%s); break;", in doswitch() 272 fprintf(stdout, "\t\tcase %d:%s %s_%s_%s(%s); break;", in doswitch() 277 fputs(" \\\n", stdout); in doswitch() [all …]
|
/netbsd-src/regress/lib/libc/ieeefp/testfloat/ |
H A D | testLoops.c | 139 fputs( "No errors found in ", stdout ); in writeTestsPerformed() 140 writeFunctionName( stdout ); in writeTestsPerformed() 141 fputs( ".\n", stdout ); in writeTestsPerformed() 142 fflush( stdout ); in writeTestsPerformed() 163 fputs( "Errors found in ", stdout ); in writeErrorFound() 164 writeFunctionName( stdout ); in writeErrorFound() 165 fputs( ":\n", stdout ); in writeErrorFound() 178 writeHex_bits32( testCases_a_int32, stdout ); in writeInput_a_int32() 187 writeHex_bits64( testCases_a_int64, stdout ); in writeInput_a_int64() 196 writeHex_float32( testCases_a_float32, stdout ); in writeInput_a_float32() [all …]
|
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/common/ |
H A D | fpu-tst.c | 146 fprintf (stdout, "\n "); in syst_float32_add() 147 sim_fpu_print_fpu (&A, (sim_fpu_print_func*) fprintf, stdout); in syst_float32_add() 148 fprintf (stdout, "\n+ "); in syst_float32_add() 149 sim_fpu_print_fpu (&B, (sim_fpu_print_func*) fprintf, stdout); in syst_float32_add() 150 fprintf (stdout, "\n= "); in syst_float32_add() 155 sim_fpu_print_fpu (&ans, (sim_fpu_print_func*) fprintf, stdout); in syst_float32_add() 156 fprintf (stdout, "\n"); in syst_float32_add() 171 sim_fpu_print_fpu (&A, (sim_fpu_print_func*) fprintf, stdout); in syst_float32_sub() 172 fprintf (stdout, " + "); in syst_float32_sub() 173 sim_fpu_print_fpu (&B, (sim_fpu_print_func*) fprintf, stdout); in syst_float32_sub() [all …]
|
/netbsd-src/external/bsd/kyua-cli/dist/bootstrap/ |
H A D | testsuite.at | 74 AT_CHECK([RUN_PLAIN_HELPER([abort_test_cases_list])], [1], [stdout], []) 76 AT_CHECK([grep "${re}" stdout], [0], [ignore], []) 85 AT_CHECK([RUN_PLAIN_HELPER([empty_test_cases_list])], [1], [stdout], []) 87 AT_CHECK([grep "${re}" stdout], [0], [ignore], []) 96 AT_CHECK([RUN_PLAIN_HELPER([zero_test_cases])], [1], [stdout], []) 98 AT_CHECK([grep "${re}" stdout], [0], [ignore], []) 107 AT_CHECK([RUN_ATF_HELPERS([passes])], [0], [stdout], []) 108 AT_CHECK([grep "atf_helpers:fails" stdout], [1], [], []) 109 AT_CHECK([grep "atf_helpers:passes.*passed" stdout], [0], [ignore], []) 110 AT_CHECK([grep "atf_helpers:skips" stdout], [1], [], []) [all …]
|
/netbsd-src/external/bsd/openldap/dist/libraries/libldap/ |
H A D | urltest.c | 65 fprintf( stdout, "LDAPS url\n" ); in main() 69 fprintf( stdout, "LDAPI url\n" ); in main() 73 fprintf( stdout, "generic LDAP url\n" ); in main() 86 fprintf( stdout, "PROTO: %s\n", lud->lud_scheme ); in main() 89 fprintf( stdout, "PATH: %s\n", lud->lud_host ); in main() 93 fprintf( stdout, "HOST: %s\n", lud->lud_host ); in main() 95 fprintf( stdout, "PORT: %d\n", lud->lud_port ); in main() 100 fprintf( stdout, "DN: %s\n", lud->lud_dn ); in main() 106 fprintf( stdout, "ATTRS:\n" ); in main() 108 fprintf( stdout, "\t%s\n", lud->lud_attrs[ i ] ); in main() [all …]
|
H A D | dntest.c | 147 fprintf( stdout, "\tldap_rdn2str() failed\n" ); in main() 151 fprintf( stdout, "\tldap_rdn2str() = \"%s\"\n", rstr ); in main() 155 fprintf( stdout, "\tempty DN\n" ); in main() 166 fprintf( stdout, "\nldap_dn2str(ldap_str2dn(\"%s\"))\n" in main() 178 fprintf( stdout, "\nldap_dn2domain(\"%s\") FAILED\n", strin ); in main() 180 fprintf( stdout, "\nldap_dn2domain(\"%s\")\n" in main() 186 fprintf( stdout, "\nldap_dn2ufn(\"%s\")\n" in main() 191 fprintf( stdout, "\nldap_dn2dcedn(\"%s\")\n" in main() 194 fprintf( stdout, "\nldap_dcedn2dn(\"%s\")\n" in main() 201 fprintf( stdout, "\nldap_dn2ad_canonical(\"%s\")\n" in main() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/demos/pkey/ |
H A D | EVP_PKEY_RSA_keygen.c | 191 fprintf(stdout, "\nNumber of bits: %d\n\n", bits); in dump_key() 193 fprintf(stdout, " n = 0x"); in dump_key() 194 BN_print_fp(stdout, n); in dump_key() 195 fprintf(stdout, "\n"); in dump_key() 197 fprintf(stdout, " e = 0x"); in dump_key() 198 BN_print_fp(stdout, e); in dump_key() 199 fprintf(stdout, "\n\n"); in dump_key() 201 fprintf(stdout, "Private values:\n"); in dump_key() 202 fprintf(stdout, " d = 0x"); in dump_key() 203 BN_print_fp(stdout, d); in dump_key() [all …]
|
/netbsd-src/external/bsd/kyua-cli/dist/integration/ |
H A D | cmd_help_test.sh | 32 atf_check -s exit:0 -o save:stdout -e empty kyua help 33 grep '^Usage: kyua' stdout || atf_fail 'No usage line printed' 34 grep -- '--loglevel' stdout || atf_fail 'Generic options not printed' 35 if grep -- '--show' stdout; then 38 grep 'about *Shows general' stdout || atf_fail 'Commands not printed' 44 atf_check -s exit:0 -o save:stdout -e empty kyua help test 45 grep '^Usage: kyua' stdout || atf_fail 'No usage line printed' 46 grep '^Run tests' stdout || atf_fail 'No description printed' 47 grep -- '--loglevel' stdout || atf_fail 'Generic options not printed' 48 grep -- '--kyuafile' stdout || atf_fail 'Command options not printed' [all …]
|
/netbsd-src/external/bsd/ntp/dist/ntpd/ |
H A D | check_y2k.c | 174 fprintf( stdout, "year0=%d NOT LESS THAN yearend=%d (span=%d)\n", in main() 190 fprintf( stdout, in main() 201 fprintf( stdout, in main() 211 fprintf( stdout, in main() 227 fprintf( stdout, "%04d: Days() DAY COUNT ERROR: s/b=%ld was=%ld\n", in main() 235 fprintf( stdout, "%04d: julian0() DAY COUNT ERROR: s/b=%ld was=%ld\n", in main() 246 fprintf( stdout, "isleap_4(1999) REPORTED TRUE\n" ); in main() 251 fprintf( stdout, "isleap_4(2000) REPORTED FALSE\n" ); in main() 256 fprintf( stdout, "isleap_4(1999) REPORTED TRUE\n" ); in main() 262 fprintf( stdout, "isleap_tm(100) REPORTED FALSE\n" ); in main() [all …]
|
/netbsd-src/external/bsd/ipf/dist/ipsend/ |
H A D | iptests.c | 172 fflush(stdout); 188 fflush(stdout); 205 fflush(stdout); 221 fflush(stdout); 241 fflush(stdout); 253 fflush(stdout); 272 fflush(stdout); 284 fflush(stdout); 299 fflush(stdout); 307 fflush(stdout); [all …]
|
/netbsd-src/external/gpl3/autoconf/dist/tests/ |
H A D | base.at | 242 AT_CHECK_CONFIGURE([--help], [], [stdout]) 243 AT_CHECK([[$FGREP 'com/?a=b&c=d#e' stdout]], [], [ignore]) 244 AT_CHECK_CONFIGURE([--version], [], [stdout]) 245 AT_CHECK([$FGREP 'GNU String++ with spaces (foo)' stdout], [], [ignore]) 246 AT_CHECK([$FGREP '2.48++ (2010-07-03)' stdout], [], [ignore]) 248 AT_CHECK([./config.status --help], [], [stdout]) 249 AT_CHECK([[$FGREP 'com/?a=b&c=d#e' stdout]], [], [ignore]) 250 AT_CHECK([./config.status --version], [], [stdout]) 251 AT_CHECK([$FGREP 'GNU String++ with spaces (foo)' stdout], [], [ignore]) 252 AT_CHECK([$FGREP '2.48++ (2010-07-03)' stdout], [], [ignore]) [all …]
|
/netbsd-src/external/bsd/atf/dist/tools/ |
H A D | atf-config_test.sh | 55 atf_check -s eq:0 -o save:stdout -e empty atf-config 59 atf_check -s eq:0 -o ignore -e empty grep "${v}" stdout 71 atf_check -s eq:0 -o save:stdout -o match:"${v}" -e empty \ 87 atf_check -s eq:0 -o save:stdout -o match:"${v}" -e empty \ 91 atf_check -s eq:0 -o save:stdout -e empty cut -d ' ' -f 3- stdout 92 atf_check -s eq:0 -o empty -e empty mv stdout expout 104 atf_check -s eq:0 -o save:stdout -o match:'atf_libexecdir' \ 148 atf_check -s eq:0 -o save:stdout -e empty -x "${V}=testval atf-config" 149 atf_check -s eq:0 -o empty -e empty mv stdout all 151 atf_check -s eq:0 -o save:stdout -e empty grep "^${v} : " all [all …]
|
/netbsd-src/external/bsd/flex/dist/examples/manual/ |
H A D | wc.lex | 85 fprintf(stdout,"lines %5d ",numlines); 88 fprintf(stdout,"characters %5d ",numchars); 91 fprintf(stdout,"words %5d ",numwords); 93 fprintf(stdout,"\n"); 107 fprintf(stdout,"-"); 109 fprintf(stdout,"\n"); 110 fprintf(stdout,"total : %25s ","") ; 112 fprintf(stdout,"lines %5d ",totlines); 115 fprintf(stdout,"characters %5d ",totchars); 118 fprintf(stdout,"words %5d ",totwords); [all …]
|
/netbsd-src/external/mit/libuv/dist/test/ |
H A D | runner.c | 101 fprintf(stdout, "1..%d\n", total); in run_tests() 102 fflush(stdout); in run_tests() 159 fprintf(stdout, "%s %d - %s%s%s\n", result, test_count, test, directive, reason); in log_tap_result() 160 fflush(stdout); in log_tap_result() 310 fprintf(stdout, "# %s\n", errmsg); in run_test() 311 fprintf(stdout, "# "); in run_test() 312 fflush(stdout); in run_test() 317 fprintf(stdout, "Output from process `%s`: (unavailable)\n", in run_test() 319 fflush(stdout); in run_test() 323 fprintf(stdout, "Output from process `%s`: (no output)\n", in run_test() [all …]
|
/netbsd-src/external/bsd/atf/dist/atf-sh/ |
H A D | atf_check_test.sh | 42 atf_check -s eq:0 -o save:stdout -e save:stderr -x \ 44 grep 'Executing command.*true' stdout >/dev/null || \ 47 atf_check -s eq:0 -o save:stdout -e save:stderr -x \ 49 grep 'Executing command.*false' stdout >/dev/null || \ 64 atf_check -s eq:1 -o save:stdout -e save:stderr -x \ 66 grep 'Executing command.*echo bar' stdout >/dev/null || \ 89 atf_check -s eq:1 -o save:stdout -e save:stderr -x \ 91 grep 'Executing command.*echo bar' stdout >/dev/null || \ 113 atf_check -s eq:1 -o save:stdout -e save:stderr -x \ 115 grep 'Executing command.*echo.*These.*contents' stdout >/dev/null || \ [all …]
|
/netbsd-src/external/bsd/atf/dist/atf-c++/ |
H A D | pkg_config_test.sh | 49 atf_check -s eq:0 -o save:stdout -e empty pkg-config --modversion "${1}" 50 ver2=$(cat stdout) 80 atf_check -s eq:0 -o save:stdout -e empty \ 82 cxx=$(cat stdout) 104 atf_check -s eq:0 -o save:stdout -e empty pkg-config --cflags atf-c++ 105 cxxflags=$(cat stdout) 108 atf_check -s eq:0 -o save:stdout -e empty \ 110 ldflags=$(cat stdout) 111 atf_check -s eq:0 -o save:stdout -e empty \ 113 libs=$(cat stdout)
|
/netbsd-src/external/gpl2/groff/dist/src/preproc/soelim/ |
H A D | soelim.cpp | 83 usage(stdout); in main() 99 if (ferror(stdout) || fflush(stdout) < 0) in main() 153 fputs(".so", stdout); in do_so() 154 fputs(line, stdout); in do_so() 242 fputs(".so", stdout); in do_file() 275 fputs(".lf", stdout); in do_file() 286 fputs(".\n", stdout); in do_file() 289 fputs(".l\n", stdout); in do_file() 292 fputs(".s\n", stdout); in do_file() 295 fputs(".lf\n", stdout); in do_file() [all …]
|
/netbsd-src/external/bsd/atf/dist/atf-c/ |
H A D | pkg_config_test.sh | 49 atf_check -s eq:0 -o save:stdout -e empty pkg-config --modversion "${1}" 50 ver2=$(cat stdout) 80 atf_check -s eq:0 -o save:stdout -e empty pkg-config --variable=cc atf-c 81 cc=$(cat stdout) 105 atf_check -s eq:0 -o save:stdout -e empty pkg-config --cflags atf-c 106 cflags=$(cat stdout) 109 atf_check -s eq:0 -o save:stdout -e empty \ 111 ldflags=$(cat stdout) 112 atf_check -s eq:0 -o save:stdout -e empty pkg-config --libs-only-l atf-c 113 libs=$(cat stdout)
|
/netbsd-src/usr.sbin/sesd/srcs/ |
H A D | getencstat.c | 91 fprintf(stdout, "%s: Enclosure OK\n", *v); in main() 95 fprintf(stdout, "%s: Enclosure Status ", *v); in main() 97 fprintf(stdout, "<OK"); in main() 102 fprintf(stdout, "%cINFO", f); in main() 106 fprintf(stdout, "%cNONCRITICAL", f); in main() 110 fprintf(stdout, "%cCRITICAL", f); in main() 114 fprintf(stdout, "%cUNRECOV", f); in main() 118 fprintf(stdout, ">\n"); in main() 139 fprintf(stdout, in main() 148 fprintf(stdout, "Element 0x%x: %s, %s\n", in main()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-format/ |
H A D | git-clang-format | 266 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 267 stdout, stderr = p.communicate() 270 return convert_string(stdout.strip()) 276 changed_lines = extract_lines(diff_process.stdout) 277 diff_process.stdout.close() 297 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) 379 stdout=subprocess.PIPE) 380 stdout = git_metadata.communicate()[0] 381 mode = oct(int(stdout.split()[0], 8)) 433 stdout=subprocess.PIPE) [all …]
|
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cpp/stuff/ |
H A D | stdio2.diff | 12 - fputc(cinput(), stdout); 21 - fputc('\n', stdout), ifiles->lineno++; 30 - fputc('\n', stdout); 39 - fputc(cinput(), stdout); 48 - fputc(cinput(), stdout); 61 + fputc(ch, stdout); 71 + fputc(*s, stdout); 105 -#define PUTCH(ch) if (!flslvl) fputc(ch, stdout) 114 - fputc('\n', stdout); 123 -cppcmt: fputc(Cflag ? ch : ' ', stdout); [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/fixincludes/ |
H A D | fixfixes.c | 91 fputc( q, stdout ); in print_quote() 96 fputc( ch, stdout ); in print_quote() 104 fputc( *(text++), stdout ); in print_quote() 135 fwrite (text, rm[0].rm_so, 1, stdout); in emit_gnu_type() 224 fwrite(text + pRM->rm_so, len, 1, stdout); in format_write() 284 fwrite( text, rm[0].rm_so, 1, stdout ); in FIX_PROC_HEAD() 292 fputs (text, stdout); in FIX_PROC_HEAD() 371 fwrite (text, 1, p - text, stdout); in FIX_PROC_HEAD() 378 fputs (text, stdout); in FIX_PROC_HEAD() 467 fwrite (text, 1, p - text, stdout); in FIX_PROC_HEAD() [all …]
|
/netbsd-src/tests/libexec/ld.elf_so/data/ |
H A D | Makefile | 16 FILES+= symver-output-ref-stdout.v0-v0 17 FILES+= symver-output-ref-stdout.v0-v1 18 FILES+= symver-output-ref-stdout.v0-v2 19 FILES+= symver-output-ref-stdout.v1-v0 20 FILES+= symver-output-ref-stdout.v1-v1 21 FILES+= symver-output-ref-stdout.v1-v2 22 FILES+= symver-output-ref-stdout.v2-v0 23 FILES+= symver-output-ref-stdout.v2-v1 24 FILES+= symver-output-ref-stdout.v2-v2
|
/netbsd-src/sbin/restore/ |
H A D | restore.c | 65 vprintf(stdout, "%s", type == LEAF ? "leaf" : "dir "); in listfile() 66 fprintf(stdout, "%10ju\t%s\n", (uintmax_t)ino, name); in listfile() 82 dprintf(stdout, "%s: not on the tape\n", name); in addfile() 160 vprintf(stdout, "Mark entries to be removed.\n"); in removeoldleaves() 162 vprintf(stdout, "Delete whiteouts\n"); in removeoldleaves() 184 dprintf(stdout, "%s: REMOVE\n", myname(ep)); in removeoldleaves() 274 dprintf(stdout, "name/inode conflict, mktempname %s\n", in nodeupdates() 302 dprintf(stdout, "[%s] %s: %s\n", keyval(key), name, in nodeupdates() 338 dprintf(stdout, "[%s] %s: %s\n", keyval(key), name, in nodeupdates() 362 dprintf(stdout, "[%s] %s: %s\n", keyval(key), name, in nodeupdates() [all …]
|
/netbsd-src/external/lgpl3/gmp/dist/tests/mpz/ |
H A D | t-mfac_uiui.c | 69 printf (" got "); mpz_out_str (stdout, 10, res); printf("\n"); in main() 70 printf (" want "); mpz_out_str (stdout, 10, ref[m]); printf("\n"); in main() 78 printf (" got "); mpz_out_str (stdout, 10, res); printf("\n"); in main() 79 printf (" want "); mpz_out_str (stdout, 10, ref2[m2]); printf("\n"); in main() 98 printf (" got "); mpz_out_str (stdout, 10, res); printf("\n"); in main() 99 printf (" want "); mpz_out_str (stdout, 10, ref[0]); printf("\n"); in main() 109 printf (" got "); mpz_out_str (stdout, 10, res); printf("\n"); in main() 110 printf (" want "); mpz_out_str (stdout, 10, ref[0]); printf("\n"); in main() 121 printf (" got "); mpz_out_str (stdout, 10, res); printf("\n"); in main() 122 printf (" want "); mpz_out_str (stdout, 10, ref[0]); printf("\n"); in main()
|