Searched refs:output (Results 151 - 175 of 934) sorted by relevance

1234567891011>>

/freebsd-current/contrib/mandoc/
H A Dmanconf.h29 /* Data from -O options and man.conf(5) output directives. */
50 struct manoutput output; member in struct:manconf
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-param-test-invalid-name1-test.py45 """Runs the given command and verifies its exit code and output."""
52 # Verify the output message contains appropriate output
53 Assert(err in p.output)
H A Dgoogletest-param-test-invalid-name2-test.py45 """Runs the given command and verifies its exit code and output."""
52 # Check for appropriate output
53 Assert(err in p.output)
H A Dgtest_skip_check_output_test.py33 output.
43 OUTPUT = gtest_test_utils.Subprocess([EXE_PATH]).output
/freebsd-current/sys/arm/nvidia/drm2/
H A Dtegra_drm.h79 int (*setup_clock)(struct tegra_drm_encoder *output,
90 int tegra_drm_encoder_attach(struct tegra_drm_encoder *output, phandle_t node);
91 int tegra_drm_encoder_init(struct tegra_drm_encoder *output,
93 int tegra_drm_encoder_exit(struct tegra_drm_encoder *output,
/freebsd-current/sbin/routed/
H A DMakefile6 SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
/freebsd-current/sys/crypto/des/
H A Ddes_ecb.c97 void des_ecb_encrypt(unsigned char *input, unsigned char *output, argument
103 unsigned char *out = output;
113 void des_ecb3_encrypt(unsigned char *input, unsigned char *output, argument
120 unsigned char *out = output;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_range.h36 InternalMmapVectorNoCtor<Range> &output);
/freebsd-current/contrib/libfido2/.actions/
H A Dbuild-bsd65 --compact-output --null-input \
70 | jq --exit-status --raw-output '.data.submit.id'
76 --compact-output --null-input \
81 | jq --exit-status --raw-output '.data.job.status'
/freebsd-current/sys/contrib/zstd/examples/
H A Dstreaming_decompression.c48 ZSTD_outBuffer output = { buffOut, buffOutSize, 0 }; local
56 size_t const ret = ZSTD_decompressStream(dctx, &output , &input);
58 fwrite_orDie(buffOut, output.pos, fout);
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-assign-shell.mk3 # Tests for the variable modifier '::!=', which assigns the output of a shell
5 # is different from the other places that capture the output of an external
7 # expression modifier ':!...!'), which also use the output when the shell
27 # expect+1: warning: "echo output; false" returned non-zero status
28 DIRECT!= echo output; false
32 _:= ${ASSIGNED::!=echo output; ${:Ufalse}}
/freebsd-current/usr.sbin/bsdconfig/includes/
H A Dincludes.sh67 output=$( awk \
126 if [ "$output" ]; then
137 echo "$output"
/freebsd-current/contrib/bsddialog/examples_library/
H A Dmixedlist.c16 int output; local
54 output = bsddialog_mixedlist(&conf, "Example", 20, 0, 13, 4, group,
57 if (output == BSDDIALOG_ERROR) {
/freebsd-current/lib/libutil/tests/
H A Dtrimdomain-nodomain_test.c58 testit(const char *input, int hostsize, const char *output, const char *test) argument
61 const char *expected = (output == NULL) ? input : output;
H A Dtrimdomain_test.c58 testit(const char *input, int hostsize, const char *output, const char *test) argument
61 const char *expected = (output == NULL) ? input : output;
/freebsd-current/libexec/rc/rc.d/
H A Dnetwait30 local ip rc count output link wait_if got_if any_error
50 if output=`/sbin/ifconfig ${wait_if} 2>/dev/null`; then
55 link=`expr "${output}" : '.*[[:blank:]]status: \(no carrier\)'`
/freebsd-current/contrib/ntp/sntp/tests/
H A DMakefile.am8 debug-output-lfp-bin \
9 debug-output-lfp-dec \
10 debug-output-pkt \
11 kod-output-blank \
12 kod-output-multiple \
13 kod-output-single \
21 kod-output-blank \
22 kod-output-single \
23 kod-output-multiple \
81 data/kod-output
[all...]
/freebsd-current/contrib/libcbor/test/
H A Dcbor_serialize_test.c500 unsigned char *output; local
502 assert_size_equal(cbor_serialize_alloc(item, &output, &output_size), 37);
505 assert_memory_equal(output, ((unsigned char[]){0x84, 0x1B}), 2);
507 _cbor_free(output);
513 unsigned char *output; local
514 assert_size_equal(cbor_serialize_alloc(item, &output, NULL), 1);
515 assert_memory_equal(output, ((unsigned char[]){0x01}), 1);
518 _cbor_free(output);
530 unsigned char *output; local
532 assert_size_equal(cbor_serialize_alloc(item, &output,
559 unsigned char *output; local
570 unsigned char *output; local
585 unsigned char *output; local
599 unsigned char *output; local
610 unsigned char *output; local
622 unsigned char *output; local
633 unsigned char *output; local
645 unsigned char *output; local
[all...]
/freebsd-current/crypto/heimdal/lib/gssapi/krb5/
H A Dprf.c48 krb5_data input, output; local
124 ret = krb5_crypto_prf(context, crypto, &input, &output);
134 tsize = min(dol, output.length);
135 memcpy(p, output.data, tsize);
138 krb5_data_free(&output);
/freebsd-current/contrib/ntp/sntp/unity/auto/
H A Dunity_test_summary.rb41 output = get_details(result_file, lines)
42 failure_output << output[:failures] unless output[:failures].empty?
43 ignore_output << output[:ignores] unless output[:ignores].empty?
90 puts " root_path - Helpful for producing more verbose output if using relative paths."
/freebsd-current/sys/contrib/zstd/doc/educational_decoder/
H A Dharness.c22 // Protect against allocating too much memory for output
92 ERR_OUT("Required output size too large for this implementation \n");
94 u8* const output = malloc(out_capacity); local
95 if (!output) ERR_OUT("failed to allocate memory \n");
107 ZSTD_decompress_with_dict(output, out_capacity,
113 write_file(argv[2], output, decompressed_size);
117 free(output);
/freebsd-current/usr.bin/paste/
H A Dpaste.c124 int opencnt, output; local
145 for (output = 0, lp = head; lp; lp = lp->next) {
147 if (output && lp->cnt &&
156 if (output && lp->cnt &&
165 if (!output) {
166 output = 1;
178 if (output)
/freebsd-current/sys/dev/uart/
H A Duart_cpu_powerpc.c84 phandle_t output; local
94 output = -1;
96 output = OF_finddevice(field.buf);
97 if (output == -1 && size == 4)
98 output = OF_instance_to_package(field.ref);
100 if (output != -1) {
101 *result = output;
138 "input-device", "output-device");
141 "input-device-1", "output-device-1");
/freebsd-current/crypto/openssl/providers/implementations/encode_decode/
H A Dencode_key2any.c84 /* der, derlen store the key DER output and its length */
146 /* der, derlen store the key DER output and its length */
167 * key_to_epki_* produce encoded output with the private key data in a
171 * key_to_pki_* primarly produce encoded output with the private key data
176 * key_to_spki_* produce encoded output with the public key data in an
180 * included in some manner in the output from the functions described above,
360 * key_to_type_specific_* produce encoded output with type specific key data,
361 * no envelopment; the same kind of output as the type specific i2d_ and
1076 #define DO_PRIVATE_KEY(impl, type, kind, output) \
1081 key_to_##kind##_##output##_priv_bi
[all...]
/freebsd-current/contrib/byacc/
H A Dvmsbuild.com36 $ write sys$output "usage: "
37 $ write sys$output " $ @vmsbuild [BYACC [{decc | vaxc} [<bldtarget>]]]"
71 $ write optf "output.obj"
99 $ write sys$output "C compiler required to rebuild BYACC"
139 $ call make output
191 $ write test_script "$ define/user_mode sys$output sys$command"
194 $ write sys$output "** made BYACC.com"
204 $ write sys$output "compiling ''p1'"

Completed in 265 milliseconds

1234567891011>>