Searched refs:output (Results 1 - 25 of 442) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/gcc/
H A Dmkconfig.sh33 output=$1
34 rm -f ${output}T
38 header_guard=GCC_`echo ${output} | sed -e ${hg_sed_expr}`
41 echo "#ifndef ${header_guard}" >> ${output}T
42 echo "#define ${header_guard}" >> ${output}T
46 if test x"$output" = x"config.h"; then
47 echo "#ifdef GENERATOR_FILE" >> ${output}T
48 echo "#error config.h is for the host, not build, machine." >> ${output}T
49 echo "#endif" >> ${output}T
55 echo "#define TARGET_CPU_DEFAULT ($TARGET_CPU_DEFAULT)" >> ${output}
[all...]
H A Dmkmap-symver.awk64 # version to be dropped from the output (unless a later version overrides).
99 output(l);
102 function output(lib) { function
107 output(inherit[lib]);
/freebsd-9.3-release/bin/sh/
H A Doutput.h32 * @(#)output.h 8.2 (Berkeley) 5/4/95
41 struct output { struct
50 extern struct output output; /* to fd 1 */
51 extern struct output errout; /* to fd 2 */
52 extern struct output memout;
53 extern struct output *out1; /* &memout if backquote, otherwise &output */
54 extern struct output *out2; /* &memout if backquote with 2>&1, otherwise
57 void outcslow(int, struct output *);
[all...]
H A Doutput.c35 static char sccsid[] = "@(#)output.c 8.2 (Berkeley) 5/4/95";
42 * Shell output routines. We use our own output routines because:
44 * any pending output.
46 * save the output of the command in a region obtained
48 * output of the command via a pipe.
60 #include "output.h"
67 #define MEM_OUT -2 /* output to dynamically allocated memory */
68 #define OUTPUT_ERR 01 /* error occurred on output */
72 struct output outpu variable in typeref:struct:output
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/unity/auto/
H A Dgenerate_test_runner.rb78 File.open(output_file, 'w') do |output|
79 create_header(output, used_mocks, testfile_includes)
80 create_externs(output, tests, used_mocks)
81 create_mock_management(output, used_mocks)
82 create_suite_setup_and_teardown(output)
83 create_reset(output, used_mocks)
84 create_main(output, input_file, tests, used_mocks)
170 def create_header(output, mocks, testfile_includes=[])
171 output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
172 create_runtest(output, mock
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
72 (unsigned char *)output, length, &ks1, iv1, enc);
74 memcpy(niv1, output[off], sizeof(DES_cblock));
75 DES_cbc_encrypt((unsigned char *)output,
76 (unsigned char *)output, l8, &ks2, iv1, !enc);
77 DES_cbc_encrypt((unsigned char *)output,
78 (unsigned char *)output, l8, &ks1, iv2, enc);
80 memcpy(niv2, output[off], sizeof(DES_cblock));
85 (unsigned char *)output, l8, &ks1, iv2, enc);
86 DES_cbc_encrypt((unsigned char *)output,
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/
H A Dutilities.c12 FILE *output
20 fprintf(output, HLINE);
24 fprintf(output, "\n");
26 fprintf(output, "%d: %x \t", 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...]
H A Dutilities.h13 #define PHLINE fprintf(output, HLINE);
17 void pkt_output(struct pkt *dpkg, int pkt_length, FILE *output);
18 void l_fp_output(l_fp *ts, FILE *output);
19 void l_fp_output_bin(l_fp *ts, FILE *output);
20 void l_fp_output_dec(l_fp *ts, FILE *output);
/freebsd-9.3-release/lib/libc/gen/
H A Dfmtmsg.c57 char *env, *msgverb, *output; local
73 output = printfmt(msgverb, class, label, sev, text, action,
75 if (output == NULL) {
79 if (*output != '\0')
80 fprintf(stderr, "%s", output);
82 free(output);
85 output = printfmt(DFLT_MSGVERB, class, label, sev, text,
87 if (output == NULL)
89 if (*output != '\0') {
91 free(output);
121 char *comp, *output; local
[all...]
/freebsd-9.3-release/sys/xen/interface/foreign/
H A Dmkheader.py68 output = ""; variable
78 output += """
90 output += header[arch];
91 output += "\n";
93 # add defines to output
105 output += re.sub(regex, replace, line) + "\n";
106 output += "\n";
113 # add unions to output
118 output += "#define %s_has_no_%s 1\n" % (arch, union);
120 output
146 output = re.sub("\\\\b%s\\\\b" % define, replace, output); variable
150 output = re.sub("\\\\b(union\\s+%s)\\\\b" % union, "\\\\1_%s" % arch, output); variable
154 output = re.sub("\\\\b(struct\\s+%s)\\\\b" % struct, "\\\\1_%s" % arch, output); variable
155 output = re.sub("\\\\b(%s)_t\\\\b" % struct, "\\\\1_%s_t" % arch, output); variable
161 output = re.sub("\\\\b%s\\\\b" % type, inttypes[arch][type], output); variable
[all...]
/freebsd-9.3-release/lib/libc/net/
H A Dbase64.c75 The encoding process represents 24-bit groups of input bits as output
83 output string.
119 output will be an integral multiple of 4 characters
122 here, the final unit of encoded output will be two
125 here, the final unit of encoded output will be three
133 u_char output[4]; local
142 output[0] = input[0] >> 2;
143 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
144 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
145 output[
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dxmemdup.c36 PTR output = xcalloc (1, alloc_size); local
37 return (PTR) memcpy (output, input, copy_size);
/freebsd-9.3-release/contrib/dialog/samples/
H A Dinputbox53 # use --output-fd to write to a different output than stderr
9 $DIALOG --title "INPUT BOX" --clear --output-fd 4 "$@" \
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dxmemdup.c36 PTR output = xcalloc (1, alloc_size); local
37 return (PTR) memcpy (output, input, copy_size);
/freebsd-9.3-release/contrib/groff/src/preproc/pic/
H A Doutput.h30 class output { class
37 output();
38 virtual ~output();
69 extern output *out;
74 output *make_troff_output();
77 output *make_tex_output();
78 output *make_tpic_output();
82 output *make_fig_output();
/freebsd-9.3-release/usr.sbin/periodic/
H A Dperiodic.sh38 # Where's our output going ?
39 eval output=\$${arg##*/}_output
40 case "$output" in
41 /*) pipe="cat >>$output";;
43 *) pipe="mail -E -s '$host ${arg##*/} run output' $output";;
79 output=TRUE
86 0) [ $success = NO ] && output=FALSE;;
87 1) [ $info = NO ] && output=FALSE;;
88 2) [ $badconfig = NO ] && output
[all...]
/freebsd-9.3-release/usr.bin/uuencode/
H A Duuencode.c45 * uuencode [input] output
67 FILE *output; variable
121 output = fopen(outfile, "w+");
122 if (output == NULL)
123 err(1, "unable to open %s for output", outfile);
125 output = stdout;
130 if (ferror(output))
155 fprintf(output, "begin-base64 %o %s\n", mode, *av);
161 fprintf(output, "%s%s", buf2, (sequence % GROUPS) ? "" : "\n");
164 fprintf(output, "\
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scripting/
H A Dtst.stringmacro.ksh65 output=`$dfilename 'this is test' 2>/dev/null`
72 if [ "$output" != "this is test" ]; then
73 print -u2 "Expected output not returned"
/freebsd-9.3-release/contrib/libstdc++/scripts/
H A Dextract_symvers37 output=$2
65 mv $tmp $output
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_filter.c35 * replace the original text with the stdout/stderr output of
52 int input[2], output[2], rval; local
73 * Input and output are named from the utility's point of view.
75 * input[1]. The parent(s) read from output[0] and the utility
76 * writes to output[1].
84 input[0] = input[1] = output[0] = output[1] = -1;
90 /* Open up utility output pipe. */
91 if (pipe(output) < 0) {
95 if ((ofp = fdopen(output[
[all...]
/freebsd-9.3-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_random.c38 static char output[0x100]; local
53 if (length >= sizeof(output) || (int)length > params->max)
69 if (length + (end - start) >= sizeof(output) - 1) {
73 memcpy(&output[length], start, end - start);
79 output[length++] = SEPARATORS[i];
83 output[length++] = ' ';
87 output[length] = '\0';
91 return output;
/freebsd-9.3-release/games/fortune/tools/
H A DDo_troff10 echo troff output in $file.tr
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbase64.c78 The encoding process represents 24-bit groups of input bits as output
86 output string.
122 output will be an integral multiple of 4 characters
125 here, the final unit of encoded output will be two
128 here, the final unit of encoded output will be three
138 u_char output[4]; local
147 output[0] = input[0] >> 2;
148 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
149 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
150 output[
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/cli/
H A Dcli-logging.c1 /* Command-line output logging for GDB, the GNU debugger.
29 /* These hold the pushed copies of the gdb output files.
44 /* If we've pushed output files, close them and pop them. */
67 struct ui_file *output; local
76 output = gdb_fopen (logging_filename, logging_overwrite ? "w" : "a");
77 if (output == NULL)
83 output = tee_file_new (gdb_stdout, 0, output, 1);
84 if (output == NULL)
87 fprintf_unfiltered (gdb_stdout, "Copying output t
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/
H A Dtest_ntlm.c56 gss_buffer_desc input, output; local
81 output.length = 0;
82 output.value = NULL;
91 &output,
100 if (output.length == 0)
101 errx(1, "output.length == 0");
103 data.data = output.value;
104 data.length = output.length;
110 gss_release_buffer(&min_stat, &output);
150 &output,
183 gss_buffer_desc input, output; local
[all...]

Completed in 158 milliseconds

1234567891011>>