Searched refs:input (Results 126 - 150 of 401) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/ipfilter/test/
H A Dlogtest32 echo $rule | ../ipftest -br - -F $format -i input/$1 -l logout > /dev/null
42 ../ipftest -br regress/$1 -F $format -i input/$1 -l logout > /dev/null
H A Ddotest29 echo "$rule" | ../ipftest -F $format -Rbr - -i input/${thistest} $tuning>> results/${thistest};
/freebsd-9.3-release/crypto/heimdal/lib/sl/
H A Dslc-lex.l91 while((c = input()) != EOF) {
134 while((c = input()) != EOF){
/freebsd-9.3-release/gnu/usr.bin/gperf/
H A DMakefile11 SRCS= bool-array.cc hash-table.cc input.cc keyword-list.cc keyword.cc \
/freebsd-9.3-release/lib/libipx/
H A Dipx_addr.c202 cvtbase(oldbase,newbase,input,inlen,result,reslen)
205 int input[];
216 /* long division: input=input/newbase */
218 sum = sum*oldbase + (long) input[d];
220 input[d++] = sum / newbase;
/freebsd-9.3-release/usr.bin/mail/
H A Dglob.h53 FILE *input; /* Current command input file */ variable
/freebsd-9.3-release/sys/kern/
H A Dmd5c.c55 * Encodes input (u_int32_t) into output (unsigned char). Assumes len is
60 Encode (unsigned char *output, u_int32_t *input, unsigned int len) argument
66 ip = input[i];
75 * Decodes input (unsigned char) into output (u_int32_t). Assumes len is
80 Decode (u_int32_t *output, const unsigned char *input, unsigned int len) argument
85 *output++ = input[i] | (input[i+1] << 8) | (input[i+2] << 16) |
86 (input[i+3] << 24);
160 const unsigned char *input local
[all...]
/freebsd-9.3-release/contrib/compiler-rt/lib/ppc/
H A Dfixtfdi.c12 uint64_t __fixtfdi(long double input) argument
14 const DD x = { .ld = input };
20 /* If (1.0 - tiny) <= input < 0x1.0p63: */
/freebsd-9.3-release/contrib/dialog/
H A Dtailbox.c47 FILE *fp = obj->obj.input;
110 FILE *fp = obj->obj.input;
193 FILE *fp = obj->obj.input;
210 FILE *fp = obj->obj.input;
259 clearerr(cb->input);
260 ch = getc(cb->input);
261 (void) ungetc(ch, cb->input);
313 /* Open input file for reading */
315 dlg_exiterr("Can't open input file in dialog_tailbox().");
357 obj->obj.input
[all...]
H A Dfselect.c59 #define BTN_HIGH (1 + 2 * MARGIN) /* Ok/Cancel, also input-box */
304 show_both_lists(char *input, LIST * d_list, LIST * f_list, int keep) argument
306 char *leaf = leaf_of(input);
430 fill_lists(char *current, char *input, LIST * d_list, LIST * f_list, int keep) argument
440 for (n = 0; current[n] && input[n]; n++) {
441 if (current[n] != input[n])
444 if (current[n] == input[n])
447 && strchr(input + n, '/') == 0) {
448 return show_both_lists(input, d_list, f_list, keep);
451 strcpy(current, input);
566 char *input; local
[all...]
H A Deditbox.c271 #define UPDATE_COL(input) col_offset = dlg_edit_offset(input, chr_offset, box_width)
345 char *input, *buffer; local
453 input = THIS_ROW;
460 UPDATE_COL(input);
462 display_one(editing, input, thisrow,
474 display_one(editing, input, thisrow,
605 strncpy(buffer, input, max_len - 1)[max_len - 1] = '\0';
609 goal_col = UPDATE_COL(input);
610 if (strcmp(input, buffe
[all...]
H A Dui_getc.c91 if (p->input != 0) {
92 fclose(p->input);
93 if (p->input == dialog_state.pipe_input)
95 p->input = 0;
122 * A select() might find more than one input ready for service. Handle them
163 if (p->input != 0) {
173 * Check any any inputs registered via callbacks, to see if there is any input
193 if (p->input != 0 && (fd = fileno(p->input)) >= 0) {
210 if (p->input !
[all...]
H A Dinputbox.c4 * inputbox.c -- implements the input box
76 char *input; local
87 input = dlg_set_result(init);
127 /* Draw the input field box */
136 /* Make a window for the input-field, to associate bindings */
148 col_offset = dlg_edit_offset(input, chr_offset, box_width);
171 edit = dlg_edit_string(input, &chr_offset, key, fkey, first);
174 dlg_show_string(dialog, input, chr_offset, inputbox_attr,
/freebsd-9.3-release/contrib/ncurses/man/
H A Dmake_sed.sh43 INPUT=input$$
/freebsd-9.3-release/gnu/usr.bin/binutils/as/
H A DMakefile28 input-file.c \
29 input-scrub.c \
/freebsd-9.3-release/crypto/openssl/crypto/des/
H A Dqud_cksm.c77 DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[], argument
107 cp = input;
H A Dpcbc_enc.c61 void DES_pcbc_encrypt(const unsigned char *input, unsigned char *output, argument
70 in = input;
/freebsd-9.3-release/contrib/opie/libopie/
H A Dbtoe.c2126 char *word, *c, *input, b[9]; local
2135 if (!(input = malloc(i+1)))
2138 strncpy(input, e, i);
2139 input[i] = 0;
2143 for (i = 0, p = 0, word = c = input; i < 6; i++, p += 11) {
2196 free(input);
/freebsd-9.3-release/contrib/ntp/libntp/
H A Diosignal.c2 * iosignal.c - input/output routines for ntpd. The socket-opening code
319 set_signal(input_handler_t *input) argument
321 INSIST(input != NULL);
323 input_handler_callback = input;
494 set_signal(input_handler_t *input) argument
496 INSIST(input != NULL);
498 input_handler_callback = input;
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dbufferevent_async.c247 cur_size = evbuffer_get_length(bev->input);
271 if (evbuffer_launch_read_(bev->input, at_most, &beva->read_overlapped)) {
383 fd = evbuffer_overlapped_get_fd_(bev->input);
387 evbuffer_overlapped_set_fd_(bev->input, INVALID_SOCKET);
399 fd = evbuffer_overlapped_get_fd_(bev->input);
422 sock = evbuffer_overlapped_get_fd_(bev_a->bev.bev.input);
451 evbuffer_commit_read_(bev->input, nbytes);
547 if (!(bev->input = evbuffer_overlapped_new_(fd))) {
552 evbuffer_free(bev->input);
561 evbuffer_add_cb(bev->input, be_async_inbuf_callbac
[all...]
/freebsd-9.3-release/gnu/lib/libregex/
H A Dregexec.c182 const re_string_t *input, int idx) internal_function;
657 err = re_string_allocate (&mctx.input, string, length, dfa->nodes_len + 1,
661 mctx.input.stop = stop;
662 mctx.input.raw_stop = stop;
663 mctx.input.newline_anchor = preg->newline_anchor;
675 mctx.state_log = re_malloc (re_dfastate_t *, mctx.input.bufs_len + 1);
686 mctx.input.tip_context = (eflags & REG_NOTBOL) ? CONTEXT_BEGBUF
689 /* Check incrementally whether of not the input string match. */
764 unsigned int offset = match_first - mctx.input.raw_mbs_idx;
765 if (BE (offset >= (unsigned int) mctx.input
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-browser.c120 char *input = NULL; local
147 rd = TB_getline (&input, &input_size, TB_IN_FILE);
156 tbc = TB_get_command (input);
480 arg_text = strchr (input, ' ');
853 /* Parse the input string for determining the command the user asked for. */
856 TB_get_command (char *input) argument
862 space = strchr (input, ' ');
864 size_tok = strlen (input) - strlen (space);
866 size_tok = strlen (input) - 1;
873 comp = memcmp (input, TB_COMMAND_TEX
887 TB_get_tree_code(char *input) argument
[all...]
/freebsd-9.3-release/lib/libcrypt/
H A Dcrypt-sha256.c113 /* Compute alternate SHA256 sum with input KEY, SALT, and KEY. The
302 const char *input; member in struct:__anon5176
361 const char *input; member in struct:__anon5177
415 SHA256_Update(&ctx, tests[cnt].input, strlen(tests[cnt].input));
429 for (i = 0; tests[cnt].input[i] != '\0'; ++i)
430 SHA256_Update(&ctx, &tests[cnt].input[i], 1);
462 char *cp = crypt_sha256(tests2[cnt].input, tests2[cnt].salt);
H A Dcrypt-sha512.c113 /* Compute alternate SHA512 sum with input KEY, SALT, and KEY. The
314 const char *input; member in struct:__anon5178
392 const char *input; member in struct:__anon5179
448 SHA512_Update(&ctx, tests[cnt].input, strlen(tests[cnt].input));
456 for (i = 0; tests[cnt].input[i] != '\0'; ++i)
457 SHA512_Update(&ctx, &tests[cnt].input[i], 1);
485 char *cp = crypt_sha512(tests2[cnt].input, tests2[cnt].salt);
/freebsd-9.3-release/sys/boot/sparc64/loader/
H A Dmetadata.c145 phandle_t input; local
151 if (OF_getprop(node, "input-device", buf, sizeof(buf)) == -1)
153 input = OF_finddevice(buf);
157 if (input == -1 || output == -1 || OF_getproplen(input, "keyboard") >= 0) {
162 if ((input = OF_instance_to_package(inst)) == -1)
169 if (input != output)
171 if (OF_getprop(input, "device_type", buf, sizeof(buf)) == -1)

Completed in 155 milliseconds

1234567891011>>