Searched refs:output (Results 176 - 200 of 660) sorted by relevance

1234567891011>>

/freebsd-11-stable/share/dtrace/
H A Dhotopen46 output = 1;
50 /output != 0/
55 output = 0;
/freebsd-11-stable/share/examples/jails/
H A Djng370 jng_graph_usage="graph [-f] [-T type] [-o output]"
371 jng_graph_descr="Generate network graph (default output is \`jng.svg')"
375 local output=jng.svg output_type= force=
379 o) output="$OPTARG" ;;
385 [ $# -eq 0 -a "$output" ] || action_usage graph # NOTREACHED
387 if [ -e "$output" -a ! "$force" ]; then
388 echo "$output: Already exists (use \`-f' to overwrite)" >&2
395 [ "$output" != "${output%.$suffix}" ] || continue
400 ngctl dot | dot ${output_type:+-T "$output_type"} -o "$output"
[all...]
/freebsd-11-stable/contrib/amd/fsinfo/
H A Dwr_fstab.c54 static int write_dkfstab(FILE *ef, qelem *q, void (*output) (FILE *, disk_fs *));
55 static int write_dkrmount(FILE *ef, qelem *q, char *hn, void (*output) (FILE *, char *, fsmount *));
280 write_dkfstab(FILE *ef, qelem *q, void (*output) (FILE *, disk_fs *))
287 (*output) (ef, dp);
294 write_dkrmount(FILE *ef, qelem *q, char *hn, void (*output) (FILE *, char *, fsmount *))
300 (*output) (ef, hn, fp);
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dbufferevent_filter.c126 /** Return 1 iff bevf's underlying bufferevent's output buffer is at or
136 evbuffer_get_length(u->output) >= u->wm_write.high;
206 bufev_f->outbuf_cb = evbuffer_add_cb(downcast(bufev_f)->output,
342 !evbuffer_get_length(bufev->output))
347 when the user adds to the output buffer. */
348 evbuffer_cb_set_flags(bufev->output, bevf->outbuf_cb, 0);
359 evbuffer_get_length(bevf->underlying->output);
361 res = bevf->process_out(downcast(bevf)->output,
362 bevf->underlying->output,
375 evbuffer_get_length(bufev->output)
[all...]
/freebsd-11-stable/contrib/gperf/src/
H A DMakefile.in67 input.$(OBJEXT) bool-array.$(OBJEXT) hash-table.$(OBJEXT) search.$(OBJEXT) output.$(OBJEXT) main.$(OBJEXT)
98 OUTPUT_H = output.h $(KEYWORD_LIST_H) $(POSITIONS_H)
118 output.$(OBJEXT): output.cc $(OUTPUT_H) $(OPTIONS_H) $(VERSION_H)
119 $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $(srcdir)/output.cc
/freebsd-11-stable/contrib/lua/src/
H A Dluac.c29 #define OUTPUT PROGNAME ".out" /* default output file */
34 static char Output[]={ OUTPUT }; /* default output file name */
35 static const char* output=Output; /* actual output file name */ variable
46 fprintf(stderr,"%s: cannot %s %s: %s\n",progname,what,output,strerror(errno));
60 " -o name output to file 'name' (default is \"%s\")\n"
91 else if (IS("-o")) /* output file */
93 output=argv[++i];
94 if (output==NULL || *output
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Decp_nistp224.c559 widelimb output[5]; local
562 output[0] = in[0] + two127p15;
563 output[1] = in[1] + two127m71m55;
564 output[2] = in[2] + two127m71;
565 output[3] = in[3];
566 output[4] = in[4];
569 output[4] += in[6] >> 16;
570 output[3] += (in[6] & 0xffff) << 40;
571 output[2] -= in[6];
573 output[
[all...]
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dcolumn.cpp62 void output();
81 virtual void output(output_file *, vunits);
107 void output(output_file *, vunits);
134 void output(output_file *, vunits);
141 void output(output_file *, vunits);
168 void output_line::output(output_file *, vunits) function in class:output_line
207 void node_output_line::output(output_file *out, vunits pos) function in class:node_output_line
263 void transparent_output_line::output(output_file *out, vunits) function in class:transparent_output_line
275 void copy_file_output_line::output(output_file *out, vunits pos) function in class:copy_file_output_line
289 output();
416 void column::output() function in class:column
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dhistfile.c428 char *output; local
437 output = history_filename (filename);
440 if ((file = open (output, mode, 0600)) == -1)
442 FREE (output);
483 FREE (output);
492 FREE (output);
523 FREE (output);
/freebsd-11-stable/contrib/groff/src/preproc/eqn/
H A Dbox.cpp329 b->output();
393 void box::output() function in class:box
501 output();
539 void quoted_text_box::output() function in class:quoted_text_box
551 void tab_box::output() function in class:tab_box
570 void space_box::output() function in class:space_box
580 void half_space_box::output() function in class:half_space_box
H A Dlimit.cpp33 void output();
140 void limit_box::output() function in class:limit_box
149 to->output();
158 from->output();
166 p->output();
H A Dscript.cpp33 void output();
169 void script_box::output() function in class:script_box
171 p->output();
176 sup->output();
185 sub->output();
H A Dsqrt.cpp30 void output();
151 void sqrt_box::output() function in class:sqrt_box
164 p->output();
/freebsd-11-stable/contrib/dialog/
H A Ddialog.c267 { "output-fd", o_output_fd, 1, "<fd>" },
268 { "output-separator",o_output_separator, 1, "<str>" },
282 { "separate-output",o_separate_output, 1, "" },
613 * On AIX 4.x, we have to flush the output right away since there is a bug in
615 * redirect output to /dev/tty.
631 dialog_state.output);
636 fputs(dialog_vars.input_result, dialog_state.output);
640 fflush(dialog_state.output);
1231 fprintf(dialog_state.output, *list, n ? leaf : dialog_version());
1232 (void) fputc('\n', dialog_state.output);
1375 process_common_options(int argc, char **argv, int offset, bool output) argument
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dmansearch.c192 mpage->output = buildoutput(outkey, page);
390 free(res[i].output);
546 char *output, *newoutput, *value; local
570 output = mandoc_malloc(sz);
572 lstcat(output, &i, input, " # ");
573 output[i++] = '\0';
575 return output;
578 output = NULL;
581 if (output == NULL) {
585 oldoutput = output;
[all...]
H A Dmanpath.c159 free(conf->output.includes);
160 free(conf->output.man);
161 free(conf->output.paper);
162 free(conf->output.style);
168 const char *const toks[] = { "manpath", "output", "_whatdb" };
216 case 1: /* output */
217 manconf_output(&conf->output, cp, 1);
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_md4.c69 static void Encode(unsigned char *output, const apr_uint32_t *input,
71 static void Decode(apr_uint32_t *output, const unsigned char *input,
365 /* Encodes input (apr_uint32_t) into output (unsigned char). Assumes len is
368 static void Encode(unsigned char *output, const apr_uint32_t *input, argument
376 output[j] = (unsigned char)(k & 0xff);
377 output[j + 1] = (unsigned char)((k >> 8) & 0xff);
378 output[j + 2] = (unsigned char)((k >> 16) & 0xff);
379 output[j + 3] = (unsigned char)((k >> 24) & 0xff);
383 /* Decodes input (unsigned char) into output (apr_uint32_t). Assumes len is
386 static void Decode(apr_uint32_t *output, cons argument
[all...]
/freebsd-11-stable/contrib/opie/libopie/
H A Dmd4c.c242 /* Encodes input (UINT4) into output (unsigned char). Assumes len is
245 static VOIDRET Encode FUNCTION((output, input, len), unsigned char *output AND UINT4 *input AND unsigned int len)
250 output[j] = (unsigned char) (input[i] & 0xff);
251 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff);
252 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff);
253 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff);
257 /* Decodes input (unsigned char) into output (UINT4). Assumes len is
260 static VOIDRET Decode FUNCTION((output, input, len), UINT4 *output AN
[all...]
H A Dmd5c.c80 * Encodes input (UINT4) into output (unsigned char).
83 static VOIDRET EEncode FUNCTION((output, input, len), unsigned char *output AND UINT4 *input AND unsigned int len)
88 output[j] = (unsigned char) (input[i] & 0xff);
89 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff);
90 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff);
91 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff);
96 * Decodes input (unsigned char) into output (UINT4).
99 static VOIDRET EDecode FUNCTION((output, input, len), UINT4 *output AN
[all...]
/freebsd-11-stable/lib/libmd/
H A Dmd4c.c260 /* Encodes input (UINT4) into output (unsigned char). Assumes len is
263 static void Encode (output, input, len)
264 unsigned char *output;
271 output[j] = (unsigned char)(input[i] & 0xff);
272 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
273 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
274 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
278 /* Decodes input (unsigned char) into output (UINT4). Assumes len is
281 static void Decode (output, input, len)
283 UINT4 *output;
[all...]
/freebsd-11-stable/sys/cddl/boot/zfs/
H A Dsha256.c232 Encode64(uint8_t *output, uint64_t *input, size_t len) argument
236 output[j] = (input[i] >> 56) & 0xff;
237 output[j + 1] = (input[i] >> 48) & 0xff;
238 output[j + 2] = (input[i] >> 40) & 0xff;
239 output[j + 3] = (input[i] >> 32) & 0xff;
240 output[j + 4] = (input[i] >> 24) & 0xff;
241 output[j + 5] = (input[i] >> 16) & 0xff;
242 output[j + 6] = (input[i] >> 8) & 0xff;
243 output[j + 7] = input[i] & 0xff;
249 * between them pass the appropriate initial values for 'H'. The output
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dfs.c274 svn_fs_fs__ioctl_get_stats_output_t *output;
276 output = apr_pcalloc(result_pool, sizeof(*output));
277 SVN_ERR(svn_fs_fs__get_stats(&output->stats, fs,
282 *output_p = output;
309 svn_fs_fs__ioctl_revision_size_output_t *output
310 = apr_pcalloc(result_pool, sizeof(*output));
312 SVN_ERR(svn_fs_fs__revision_size(&output->rev_size,
315 *output_p = output;
271 svn_fs_fs__ioctl_get_stats_output_t *output; local
306 svn_fs_fs__ioctl_revision_size_output_t *output local
/freebsd-11-stable/contrib/gdb/gdb/
H A Dcompleter.c350 "show output-" "radix"
351 "show output" "-radix"
631 char *output = NULL;
657 output = list[index];
658 if (output)
667 if (output == NULL)
674 return (output);
630 char *output = NULL; local
/freebsd-11-stable/sys/dev/uart/
H A Duart_cpu_sparc64.c94 * and output are selected.
97 * environment (ie /options/output-device and /options/input-device) because
108 phandle_t chosen, input, output; local
113 if (OF_getprop(options, "output-device", dev, devsz) == -1)
115 output = OF_finddevice(dev);
116 if (input == -1 || output == -1 ||
126 if ((output = OF_instance_to_package(inst)) == -1)
130 if (input != output)
/freebsd-11-stable/contrib/libarchive/libarchive_fe/
H A Dpassphrase.c171 int input, output, save_errno, i, need_restart; local
194 (input = output = open(_PATH_TTY, O_RDWR)) == -1) {
200 output = STDERR_FILENO;
244 int r = write(output, prompt, strlen(prompt));
265 int r = write(output, "\n", 1);

Completed in 306 milliseconds

1234567891011>>