| /dragonfly/contrib/ldns/ |
| HD | host2str.c | 200 ldns_pkt_opcode2buffer_str(ldns_buffer *output, ldns_pkt_opcode opcode) in ldns_pkt_opcode2buffer_str() argument 204 ldns_buffer_printf(output, "%s", lt->name); in ldns_pkt_opcode2buffer_str() 206 ldns_buffer_printf(output, "OPCODE%u", opcode); in ldns_pkt_opcode2buffer_str() 208 return ldns_buffer_status(output); in ldns_pkt_opcode2buffer_str() 212 ldns_pkt_rcode2buffer_str(ldns_buffer *output, ldns_pkt_rcode rcode) in ldns_pkt_rcode2buffer_str() argument 216 ldns_buffer_printf(output, "%s", lt->name); in ldns_pkt_rcode2buffer_str() 218 ldns_buffer_printf(output, "RCODE%u", rcode); in ldns_pkt_rcode2buffer_str() 220 return ldns_buffer_status(output); in ldns_pkt_rcode2buffer_str() 224 ldns_algorithm2buffer_str(ldns_buffer *output, in ldns_algorithm2buffer_str() argument 230 ldns_buffer_printf(output, "%s", lt->name); in ldns_algorithm2buffer_str() [all …]
|
| /dragonfly/contrib/ldns/ldns/ |
| HD | host2str.h | 187 ldns_pkt_opcode2buffer_str(ldns_buffer *output, ldns_pkt_opcode opcode); 197 ldns_pkt_rcode2buffer_str(ldns_buffer *output, ldns_pkt_rcode rcode); 207 ldns_algorithm2buffer_str(ldns_buffer *output, 218 ldns_cert_algorithm2buffer_str(ldns_buffer *output, 268 ldns_status ldns_rdf2buffer_str_a(ldns_buffer *output, const ldns_rdf *rdf); 276 ldns_status ldns_rdf2buffer_str_aaaa(ldns_buffer *output, const ldns_rdf *rdf); 284 ldns_status ldns_rdf2buffer_str_str(ldns_buffer *output, const ldns_rdf *rdf); 292 ldns_status ldns_rdf2buffer_str_b64(ldns_buffer *output, const ldns_rdf *rdf); 300 ldns_status ldns_rdf2buffer_str_b32_ext(ldns_buffer *output, const ldns_rdf *rdf); 308 ldns_status ldns_rdf2buffer_str_hex(ldns_buffer *output, const ldns_rdf *rdf); [all …]
|
| HD | host2wire.h | 57 ldns_status ldns_rdf2buffer_wire(ldns_buffer *output, const ldns_rdf *rdf); 66 ldns_status ldns_rdf2buffer_wire_compress(ldns_buffer *output, const ldns_rdf *rdf, ldns_rbtree_t *… 76 ldns_status ldns_rdf2buffer_wire_canonical(ldns_buffer *output, 87 ldns_status ldns_rr2buffer_wire(ldns_buffer *output, 100 ldns_status ldns_rr2buffer_wire_compress(ldns_buffer *output, 115 ldns_status ldns_rr2buffer_wire_canonical(ldns_buffer *output, 127 ldns_status ldns_rrsig2buffer_wire(ldns_buffer *output, const ldns_rr *sigrr); 139 ldns_status ldns_rr_rdata2buffer_wire(ldns_buffer *output, const ldns_rr *rr); 147 ldns_status ldns_pkt2buffer_wire(ldns_buffer *output, const ldns_pkt *pkt); 156 ldns_status ldns_pkt2buffer_wire_compress(ldns_buffer *output, const ldns_pkt *pkt, ldns_rbtree_t *… [all …]
|
| /dragonfly/contrib/gcc-4.7/gcc/ |
| HD | mkconfig.sh | 33 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}T [all …]
|
| /dragonfly/contrib/ldns/compat/ |
| HD | b64_ntop.c | 118 uint8_t output[4]; in ldns_b64_ntop() local 136 output[0] = input[0] >> 2; in ldns_b64_ntop() 137 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); in ldns_b64_ntop() 138 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); in ldns_b64_ntop() 139 output[3] = input[2] & 0x3f; in ldns_b64_ntop() 140 assert(output[0] < 64); in ldns_b64_ntop() 141 assert(output[1] < 64); in ldns_b64_ntop() 142 assert(output[2] < 64); in ldns_b64_ntop() 143 assert(output[3] < 64); in ldns_b64_ntop() 148 target[datalength++] = Base64[output[0]]; in ldns_b64_ntop() [all …]
|
| /dragonfly/lib/libc/gen/ |
| HD | fmtmsg.c | 56 char *env, *msgverb, *output; in fmtmsg() local 72 output = printfmt(msgverb, class, label, sev, text, action, in fmtmsg() 74 if (output == NULL) { in fmtmsg() 78 if (*output != '\0') in fmtmsg() 79 fprintf(stderr, "%s", output); in fmtmsg() 81 free(output); in fmtmsg() 84 output = printfmt(DFLT_MSGVERB, class, label, sev, text, in fmtmsg() 86 if (output == NULL) in fmtmsg() 88 if (*output != '\0') { in fmtmsg() 90 free(output); in fmtmsg() [all …]
|
| /dragonfly/bin/sh/ |
| HD | output.h | 44 struct output { struct 54 extern struct output output; /* to fd 1 */ argument 55 extern struct output errout; /* to fd 2 */ 56 extern struct output memout; 57 extern struct output *out1; /* &memout if backquote, otherwise &output */ 58 extern struct output *out2; /* &memout if backquote with 2>&1, otherwise 61 void outcslow(int, struct output *); 66 void outstr(const char *, struct output *); 67 void outqstr(const char *, struct output *); 68 void outbin(const void *, size_t, struct output *); [all …]
|
| HD | output.c | 77 struct output output = {NULL, NULL, NULL, OUTBUFSIZ, 1, 0}; variable 78 struct output errout = {NULL, NULL, NULL, 256, 2, 0}; 79 struct output memout = {NULL, NULL, NULL, 64, MEM_OUT, 0}; 80 struct output *out1 = &output; 81 struct output *out2 = &errout; 84 outcslow(int c, struct output *file) in outcslow() 114 outstr(const char *p, struct output *file) in outstr() 120 byteseq(int ch, struct output *file) in byteseq() 132 outdqstr(const char *p, struct output *file) in outdqstr() 174 outqstr(const char *p, struct output *file) in outqstr() [all …]
|
| /dragonfly/contrib/gdb-7/gdb/cli/ |
| HD | cli-logging.c | 83 struct ui_file *output, *new_logging_no_redirect_file; in set_logging_redirect() local 99 output = logging_no_redirect_file; in set_logging_redirect() 109 output = tee_file_new (saved_output.out, 0, gdb_stdout, 0); in set_logging_redirect() 110 if (output == NULL) in set_logging_redirect() 121 if (current_interp_set_logging (1, output, NULL) == 0) in set_logging_redirect() 123 gdb_stdout = output; in set_logging_redirect() 124 gdb_stdlog = output; in set_logging_redirect() 125 gdb_stderr = output; in set_logging_redirect() 126 gdb_stdtarg = output; in set_logging_redirect() 127 gdb_stdtargerr = output; in set_logging_redirect() [all …]
|
| /dragonfly/sys/dev/raid/vinum/ |
| HD | .gdbinit.kernel | 25 output/x $esp 27 output (((int)$ebp)-(int)$esp)/4-4 29 output/x $ebp 33 output/x *(int*)$ebp 35 output ((*(int*)$ebp)-(int)$ebp)/4-4 39 output/x (int) ($ebp+8) 41 output (char*) *(int*)($ebp+8) 43 output/x (int) ($ebp+12) 45 output (char*) *(int*)($ebp+12) 47 output/x (int) ($ebp+16) [all …]
|
| HD | .gdbinit.vinum | 11 output/x *$rq 17 output/x *$rqg 58 output/x rq->prq[0].rqe[0].sdno 60 output/x rq->prq[0].rqe[0].b.b_dev 62 output/x rq->prq[0].rqe[0].b.b_data 64 output/x rq->prq[0].rqe[0].b.b_bcount 66 output/x rq->prq[0].rqe[0].b.b_bio1.bio_offset 68 output/x rq->prq[0].rqe[0].sdoffset 82 output/x rq->prq[0].rqe[0].b.b_flags 84 output/x rq->prq[0].rqe[1].sdno [all …]
|
| /dragonfly/usr.bin/uuencode/ |
| HD | uuencode.c | 57 static FILE *output; variable 111 output = fopen(outfile, "w+"); in main() 112 if (output == NULL) in main() 115 output = stdout; in main() 120 if (ferror(output)) in main() 145 fprintf(output, "begin-base64 %o %s\n", mode, *av); in base64_encode() 151 fprintf(output, "%s%s", buf2, (sequence % GROUPS) ? "" : "\n"); in base64_encode() 154 fprintf(output, "\n"); in base64_encode() 155 fprintf(output, "====\n"); in base64_encode() 168 (void)fprintf(output, "begin %o %s\n", mode, *av); in encode() [all …]
|
| /dragonfly/contrib/gdb-7/gdb/features/ |
| HD | feature_to_c.sh | 22 output=$1 25 if test -z "$output" || test -z "$1"; then 30 if test -e "$output"; then 31 echo "Output file \"$output\" already exists; refusing to overwrite." 62 }' < $input >> $output 65 echo >> $output 66 echo "const char *const xml_builtin[][2] = {" >> $output 71 echo " { \"$basename\", $arrayname }," >> $output 74 echo " { 0, 0 }" >> $output 75 echo "};" >> $output
|
| /dragonfly/lib/libc/net/ |
| HD | base64.c | 131 unsigned char output[4]; in b64_ntop() local 140 output[0] = input[0] >> 2; in b64_ntop() 141 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); in b64_ntop() 142 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); in b64_ntop() 143 output[3] = input[2] & 0x3f; in b64_ntop() 147 target[datalength++] = Base64[output[0]]; in b64_ntop() 148 target[datalength++] = Base64[output[1]]; in b64_ntop() 149 target[datalength++] = Base64[output[2]]; in b64_ntop() 150 target[datalength++] = Base64[output[3]]; in b64_ntop() 160 output[0] = input[0] >> 2; in b64_ntop() [all …]
|
| /dragonfly/contrib/nvi2/ex/ |
| HD | ex_filter.c | 44 int input[2], output[2], rval; in ex_filter() local 78 input[0] = input[1] = output[0] = output[1] = -1; in ex_filter() 85 if (pipe(output) < 0) { in ex_filter() 89 if ((ofp = fdopen(output[0], "r")) == NULL) { in ex_filter() 104 else if (output[0] != -1) in ex_filter() 105 (void)close(output[0]); in ex_filter() 106 if (output[1] != -1) in ex_filter() 107 (void)close(output[1]); in ex_filter() 122 (void)dup2(output[1], STDOUT_FILENO); in ex_filter() 123 (void)dup2(output[1], STDERR_FILENO); in ex_filter() [all …]
|
| /dragonfly/sys/libprop/ |
| HD | prop_data.c | 109 uint8_t output[4]; in _prop_data_externalize() local 124 output[0] = (uint32_t)input[0] >> 2; in _prop_data_externalize() 125 output[1] = ((uint32_t)(input[0] & 0x03) << 4) + in _prop_data_externalize() 127 output[2] = ((uint32_t)(input[1] & 0x0f) << 2) + in _prop_data_externalize() 129 output[3] = input[2] & 0x3f; in _prop_data_externalize() 130 _PROP_ASSERT(output[0] < 64); in _prop_data_externalize() 131 _PROP_ASSERT(output[1] < 64); in _prop_data_externalize() 132 _PROP_ASSERT(output[2] < 64); in _prop_data_externalize() 133 _PROP_ASSERT(output[3] < 64); in _prop_data_externalize() 136 _prop_data_base64[output[0]]) == false || in _prop_data_externalize() [all …]
|
| /dragonfly/contrib/pam_passwdqc/ |
| HD | passwdqc_random.c | 135 char output[0x100]; in passwdqc_random() local 145 if (max_length >= sizeof(output) || (int)max_length > params->max) in passwdqc_random() 189 if (length + extra >= sizeof(output)) in passwdqc_random() 191 memcpy(&output[length], start, extra); in passwdqc_random() 194 output[length] ^= rndptr[1] & 0x20; in passwdqc_random() 213 output[length++] = SEPARATORS[i]; in passwdqc_random() 216 output[length++] = SEPARATORS[0]; in passwdqc_random() 225 if (bits <= 0 && length < sizeof(output)) { in passwdqc_random() 226 output[length] = '\0'; in passwdqc_random() 227 retval = strdup(output); in passwdqc_random() [all …]
|
| /dragonfly/usr.bin/indent/ |
| HD | io.c | 95 putc('\n', output); in dump_line() 109 fprintf(output, ".*/\n"); in dump_line() 119 do putc(*s++, output); in dump_line() 124 fprintf(output, s[0]=='/' && s[1]=='*' ? "\t%.*s" : "\t/* %.*s */", in dump_line() 127 else fprintf(output, "%.*s", (int)(e_lab - s_lab), s_lab); in dump_line() 140 fprintf(output, ".*/\n"); in dump_line() 153 fprintf(output, "%d", target_col * 7); in dump_line() 155 putc(*p, output); in dump_line() 177 putc('\n', output); in dump_line() 184 fwrite(com_st, e_com - com_st, 1, output); in dump_line() [all …]
|
| /dragonfly/usr.sbin/periodic/ |
| HD | periodic.sh | 20 eval output=\$${1##*/}_output 21 case "$output" in 22 /*) pipe="cat >>$output";; 24 *) pipe="mail -E -s '$host ${2}${2:+ }${1##*/} run output' $output";; 122 output=TRUE 128 0) [ $success = NO ] && output=FALSE;; 129 1) [ $info = NO ] && output=FALSE;; 130 2) [ $badconfig = NO ] && output=FALSE;; 132 [ $output = TRUE ] && { cat $tmp_output; empty=FALSE; }
|
| /dragonfly/contrib/gdb-7/gdb/ |
| HD | c-lang.c | 372 struct obstack *output, int length) in convert_ucn() argument 388 4, 4, output, translit_none); in convert_ucn() 398 struct obstack *output) in emit_numeric_character() argument 404 obstack_grow (output, buffer, TYPE_LENGTH (type)); in emit_numeric_character() 414 char *limit, struct obstack *output) in convert_octal() argument 427 emit_numeric_character (type, value, output); in convert_octal() 439 char *limit, struct obstack *output) in convert_hex() argument 449 emit_numeric_character (type, value, output); in convert_hex() 470 char *p, char *limit, struct obstack *output) in convert_escape() argument 478 obstack_1grow (output, '\\'); in convert_escape() [all …]
|
| /dragonfly/contrib/file/magic/Magdir/ |
| HD | diff | 4 # diff: file(1) magic for diff(1) output 6 0 search/1 diff\040 diff output text 9 >&0 search/1024 \n---\040 context diff output text 11 0 search/1 Only\040in\040 diff output text 13 0 search/1 Common\040subdirectories:\040 diff output text 16 0 search/1 Index: RCS/CVS diff output text 19 # bsdiff: file(1) magic for bsdiff(1) output 28 >>>>&0 search/1 @@ unified diff output text
|
| /dragonfly/contrib/nvi2/common/ |
| HD | seq.c | 35 CHAR_T *output, size_t olen, seq_t stype, int flags) in seq_set() argument 52 if (output == NULL || olen == 0) { in seq_set() 55 } else if ((p = v_wstrdup(sp, output, olen)) == NULL) { in seq_set() 59 free(qp->output); in seq_set() 61 qp->output = p; in seq_set() 89 if (output == NULL) { in seq_set() 90 qp->output = NULL; in seq_set() 92 } else if ((qp->output = v_wstrdup(sp, output, olen)) == NULL) { in seq_set() 164 free(qp->output); in seq_free() 293 if (qp->output != NULL) in seq_dump() [all …]
|
| /dragonfly/contrib/nvi2/cl/ |
| HD | cl_term.c | 42 char *output; /* Corresponding vi command. */ member 91 CHAR_T output[5]; in cl_term_init() local 104 CHAR2INT(sp, tkp->output, strlen(tkp->output), wp, wlen); in cl_term_init() 105 MEMCPY(output, wp, wlen); in cl_term_init() 107 output, strlen(tkp->output), SEQ_COMMAND, in cl_term_init() 125 output[0] = (UCHAR_T)kp->ch; in cl_term_init() 127 output, 1, SEQ_INPUT, SEQ_NOOVERWRITE | SEQ_SCREEN)) in cl_term_init() 144 if (tkp->output == NULL) { in cl_term_init() 158 CHAR2INT(sp, tkp->output, strlen(tkp->output), wp, wlen); in cl_term_init() 159 MEMCPY(output, wp, wlen); in cl_term_init() [all …]
|
| /dragonfly/contrib/byacc/ |
| HD | CHANGES | 83 * reader.c, output.c: 462 Subject: Re: [PATCH] support bison's --defines and --output options in byacc 476 * output.c: 496 * output.c: 533 * output.c: use new macro 554 this splits up "\nbreak;\n" output to put #line directives after first "\n" 683 * output.c: gcc warning 957 * output.c: change type, fix gcc warnings 1350 * reader.c, output.c: cppcheck -- reduce scope 1447 * verbose.c, output.c, mkpar.c, main.c, warshall.c, lr0.c, lalr.c, [all …]
|
| /dragonfly/contrib/mdocml/ |
| HD | main.c | 237 conf.output.synopsisonly = 1; in main() 366 if (manconf_output(&conf.output, in main() 373 if (outst.outtype != OUTT_TREE || conf.output.noval == 0) in main() 378 (conf.output.outfilename == NULL && in main() 379 conf.output.tagfilename == NULL && in main() 384 (conf.output.width == 0 || conf.output.indent == 0) && in main() 387 if (conf.output.width == 0 && ws.ws_col < 79) in main() 388 conf.output.width = ws.ws_col - 1; in main() 389 if (conf.output.indent == 0 && ws.ws_col < 66) in main() 390 conf.output.indent = 3; in main() [all …]
|