Searched refs:output (Results 26 - 50 of 934) sorted by relevance

1234567891011>>

/freebsd-current/sys/dev/cxgbe/cudbg/
H A Dfastlz.h39 int fastlz_compress(const void *input, int length, void *output);
41 void *output);
42 int fastlz_decompress(const void *input, int length, void *output, int maxout);
/freebsd-current/contrib/bsddialog/examples_library/
H A Dradiolist.c16 int i, output; local
32 output = bsddialog_radiolist(&conf, "Example", 15, 30, 5, 5, items,
35 if (output == BSDDIALOG_ERROR) {
H A Dpause.c16 int output; local
27 output = bsddialog_pause(&conf, "Example", 8, 50, &sec);
30 switch (output) {
H A Dchecklist.c16 int i, output; local
32 output = bsddialog_checklist(&conf, "Example", 15, 30, 5, 5, items,
35 if (output == BSDDIALOG_ERROR) {
H A Dmenu.c16 int i, output; local
32 output = bsddialog_menu(&conf, "Example", 15, 30, 5, 5, items, NULL);
34 if (output == BSDDIALOG_ERROR) {
/freebsd-current/contrib/kyua/integration/helpers/
H A Dinterrupts.cpp46 std::ofstream output(cookie.c_str());
47 output.close();
54 std::ofstream output(cookie.c_str());
55 output.close();
/freebsd-current/lib/libc/net/
H A Dbase64.c71 The encoding process represents 24-bit groups of input bits as output
79 output string.
115 output will be an integral multiple of 4 characters
118 here, the final unit of encoded output will be two
121 here, the final unit of encoded output will be three
129 u_char output[4]; local
138 output[0] = input[0] >> 2;
139 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
140 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
141 output[
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbase64.c77 The encoding process represents 24-bit groups of input bits as output
85 output string.
121 output will be an integral multiple of 4 characters
124 here, the final unit of encoded output will be two
127 here, the final unit of encoded output will be three
137 u_char output[4]; local
146 output[0] = input[0] >> 2;
147 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
148 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
149 output[
[all...]
/freebsd-current/contrib/ldns/ldns/
H A Dhost2wire.h53 * \param[out] *output buffer to append the result to
57 ldns_status ldns_rdf2buffer_wire(ldns_buffer *output, const ldns_rdf *rdf);
61 * \param[out] *output buffer to append the result to
66 ldns_status ldns_rdf2buffer_wire_compress(ldns_buffer *output, const ldns_rdf *rdf, ldns_rbtree_t *compression_data);
72 * \param[out] *output buffer to append the result to
76 ldns_status ldns_rdf2buffer_wire_canonical(ldns_buffer *output,
81 * \param[out] *output buffer to append the result to
87 ldns_status ldns_rr2buffer_wire(ldns_buffer *output,
93 * \param[out] *output buffer to append the result to
100 ldns_status ldns_rr2buffer_wire_compress(ldns_buffer *output,
[all...]
/freebsd-current/tests/sys/cddl/zfs/tests/xattr/
H A Dxattr_008_pos.ksh39 # 2. List the . directory, verifying the output
55 for file in $TMPDIR/output.${TESTCASE_ID} $TMPDIR/expected-output.${TESTCASE_ID} \
79 log_must eval "$RUNAT $TESTDIR/myfile.${TESTCASE_ID} $LS -a . > $TMPDIR/output.${TESTCASE_ID}"
81 create_expected_output $TMPDIR/expected-output.${TESTCASE_ID} . .. passwd
83 log_must $DIFF $TMPDIR/output.${TESTCASE_ID} $TMPDIR/expected-output.${TESTCASE_ID}
86 log_must eval "$RUNAT $TESTDIR/myfile.${TESTCASE_ID} $LS . > $TMPDIR/output.${TESTCASE_ID}"
87 create_expected_output $TMPDIR/expected-output.${TESTCASE_ID} \
89 log_must $DIFF $TMPDIR/output
[all...]
/freebsd-current/contrib/ntp/sntp/
H A Dutilities.c12 FILE *output
20 fprintf(output, HLINE);
24 fprintf(output, "\n");
26 fprintf(output, "%3d: %02x ", a, pkt[a]);
29 fprintf(output, "\n");
30 fprintf(output, HLINE);
38 FILE * output
41 fprintf(output, "%s\n", prettydate(ts));
49 FILE *output
54 fprintf(output, HLIN
[all...]
/freebsd-current/usr.bin/bintrans/
H A Duuencode.c33 * uuencode [input] output
61 static FILE *output; variable
73 output = stdout;
77 if (fflush(output) != 0)
138 output = fopen(outfile, "w+");
139 if (output == NULL)
140 err(1, "unable to open %s for output", outfile);
142 output = stdout;
147 if (fflush(output) != 0)
173 fprintf(output, "begi
[all...]
/freebsd-current/contrib/kyua/doc/
H A Dmanbuild.sh104 # If we fail to output the included file, just leave the line as
154 [ ${#} -eq 2 ] || err "Must provide input and output names as arguments"
156 local output="${1}"; shift
158 trap "rm -f '${output}.tmp'" EXIT HUP INT TERM
160 <"${input}" >"${output}.tmp" \
161 || err "Failed to generate ${output}"
162 if validate_file "${output}.tmp"; then
165 err "Failed to generate ${output}; some patterns were left unreplaced"
167 mv "${output}.tmp" "${output}"
[all...]
/freebsd-current/contrib/dialog/samples/
H A Dmenubox1225 sed -e 's/^/"/' -e 's/:/" "/g' -e 's/$/"/' <$input >$output
26 cat $output >$input
38 --file $input 2> $output
42 tempfile=$output
H A Dinputbox53 # use --output-fd to write to a different output than stderr
9 $DIALOG --title "INPUT BOX" --clear --output-fd 4 "$@" \
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_user/misc/
H A Dzpool_wait_privilege.ksh30 output=$(zpool wait -H $TESTPOOL 1) || \
32 # There should be one line of status output in a pool with no activity.
33 log_must eval '[[ $(wc -l <<<$output) -ge 1 ]]'
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/
H A Dxattr_008_pos.ksh39 # 2. List the . directory, verifying the output
46 for file in $TEST_BASE_DIR/output.$$ $TEST_BASE_DIR/expected-output.$$ \
60 log_must eval "runat $TESTDIR/myfile.$$ ls . > $TEST_BASE_DIR/output.$$"
61 create_expected_output $TEST_BASE_DIR/expected-output.$$ \
63 log_must diff $TEST_BASE_DIR/output.$$ $TEST_BASE_DIR/expected-output.$$
65 log_must eval "runat $TESTDIR/myfile.$$ ls -a . > $TEST_BASE_DIR/output.$$"
66 create_expected_output $TEST_BASE_DIR/expected-output.$$ . .. \
68 log_must diff $TEST_BASE_DIR/output
[all...]
/freebsd-current/usr.bin/tsort/tests/
H A Dtsort_test.sh21 cat >output <<EOF
29 atf_check -o file:output tsort input
30 atf_check -o file:output tsort <input
48 cat >output<<EOF
56 atf_check -e match:cycle -o file:output tsort input
57 atf_check -e match:cycle -o file:output tsort <input
58 atf_check -o file:output tsort -q input
59 atf_check -o file:output tsort -q <input
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-setuptestsuite-test.py45 self.assertNotEqual(p.exit_code, 0, msg=p.output)
53 p.output,
H A Dgtest_help_test.py62 in gtest_test_utils.Subprocess([PROGRAM_PATH, LIST_TESTS_FLAG]).output
88 + r'output=.*'
103 the exit code and the text output as a tuple.
113 return child.exit_code, child.output
129 exit_code, output = RunWithFlag(flag)
137 self.assertTrue(HELP_REGEX.search(output), output)
140 self.assertIn(STREAM_RESULT_TO_FLAG, output)
142 self.assertNotIn(STREAM_RESULT_TO_FLAG, output)
145 self.assertIn(DEATH_TEST_STYLE_FLAG, output)
[all...]
H A Dgoogletest-output-test.py32 r"""Tests the text output of Google C++ Testing and Mocking Framework.
36 where BUILD/DIR contains the built googletest-output-test_ file.
58 GOLDEN_NAME = 'googletest-output-test-golden-lin.txt'
60 PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath('googletest-output-test_')
103 """Removes all file location info from a Google Test program's output.
106 test_output: the output of a Google Test program.
109 output with all file location info (in the form of
116 r'.*[/\\]((googletest-output-test_|gtest).cc)(\:\d+|\(\d+\))\: ',
122 def RemoveStackTraceDetails(output):
123 """Removes all stack traces from a Google Test program's output
[all...]
/freebsd-current/lib/libc/tests/stdlib/
H A Dcxa_thread_atexit_nothr_test.cc33 static FILE *output = NULL; variable
36 Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); }
37 ~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); }
38 void use() { ATF_REQUIRE(fprintf(output, "Used\n") > 0); }
52 output = stderr;
64 fflush(output);
72 ATF_REQUIRE((output = fopen("test_main.txt", "w")) != NULL);
83 __cxa_thread_atexit(again, arg, &output);
H A Dcxa_thread_atexit_test.cc33 static FILE *output = NULL; variable
36 Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); }
37 ~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); }
38 void use() { ATF_REQUIRE(fprintf(output, "Used\n") > 0); }
45 ATF_REQUIRE(fprintf(output, "DIED\n") > 0);
56 __cxa_thread_atexit(again, arg, &output);
81 output = stderr;
100 ATF_REQUIRE((output = fopen("test_before.txt", "w")) != NULL);
106 fflush(output);
121 ATF_REQUIRE((output
[all...]
/freebsd-current/usr.bin/yacc/tests/
H A DMakefile84 FILEStest_yacc+= big_b.output
86 FILEStest_yacc+= big_l.output
88 FILEStest_yacc+= calc_code_all.output
92 FILEStest_yacc+= calc_code_default.output
96 FILEStest_yacc+= calc_code_imports.output
100 FILEStest_yacc+= calc_code_provides.output
104 FILEStest_yacc+= calc_code_requires.output
108 FILEStest_yacc+= calc_code_top.output
112 FILEStest_yacc+= calc.output
116 FILEStest_yacc+= calc1.output
[all...]
/freebsd-current/cddl/usr.sbin/zfsd/
H A Dzfsd_exception.cc101 stringstream output; local
105 output << "Pool ";
110 output << poolName;
112 output << "Unknown";
113 output << ": ";
121 output << "Vdev " << vdev.GUID() << ": ";
125 output << "Pool " << vdev.PoolGUID() << ": ";
126 output << "Vdev " << vdev.GUID() << ": ";
130 output << m_log << endl;
131 syslog(LOG_ERR, "%s", output
[all...]

Completed in 151 milliseconds

1234567891011>>