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

1234567891011>>

/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dt_regex_att.c58 fail(const char *pattern, const char *input, size_t lineno) { argument
60 "skipping failed test at line %zu (pattern=%s, input=%s)\n",
61 lineno, pattern, input);
65 bug(const char *pattern, const char *input, size_t lineno) { argument
173 strcmp(input, b[i].i) == 0) {
174 fail(pattern, input, lineno);
396 atf_tc_fail("Failed to open input file %s", data_path);
400 char *name, *pattern, *input, *matches, *comment; local
432 ATF_REQUIRE_MSG((input = strtok(NULL, sep)) != NULL,
433 "Missing input a
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/tests/
H A Dhash_test.c78 const char *input; member in struct:hash_testcase
204 while (testcase->input != NULL && testcase->result != NULL) {
208 (const isc_uint8_t *) testcase->input,
331 while (testcase->input != NULL && testcase->result != NULL) {
335 (const isc_uint8_t *) testcase->input,
463 while (testcase->input != NULL && testcase->result != NULL) {
467 (const isc_uint8_t *) testcase->input,
609 while (testcase->input != NULL && testcase->result != NULL) {
613 (const isc_uint8_t *) testcase->input,
756 while (testcase->input !
[all...]
/freebsd-11-stable/contrib/opie/libopie/
H A Dmd4c.c116 VOIDRET opiemd4update FUNCTION((context, input, inputLen), struct opiemdx_ctx *context AND unsigned char *input AND unsigned int inputLen)
132 memcpy((POINTER) & context->buffer[index], (POINTER) input, partLen);
136 MD4Transform(context->state, &input[i]);
142 /* Buffer remaining input */
143 memcpy((POINTER) & context->buffer[index], (POINTER) & input[i], inputLen - i);
242 /* 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[
[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 AND unsigned char *input AN
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dfs.c273 svn_fs_fs__ioctl_get_stats_input_t *input = input_void;
278 input->progress_func,
279 input->progress_baton,
287 svn_fs_fs__ioctl_dump_index_input_t *input = input_void;
289 SVN_ERR(svn_fs_fs__dump_index(fs, input->revision,
290 input->callback_func,
291 input->callback_baton,
299 svn_fs_fs__ioctl_load_index_input_t *input = input_void;
301 SVN_ERR(svn_fs_fs__load_index(fs, input->revision, input
270 svn_fs_fs__ioctl_get_stats_input_t *input = input_void; local
284 svn_fs_fs__ioctl_dump_index_input_t *input = input_void; local
296 svn_fs_fs__ioctl_load_index_input_t *input = input_void; local
305 svn_fs_fs__ioctl_revision_size_input_t *input = input_void; local
317 svn_fs_fs__ioctl_build_rep_cache_input_t *input = input_void; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Dxxhash.c47 ** You can also enable this parameter if you know your input data will always be aligned (boundaries of 4, for U32).
54 ** If the input pointer is a null pointer, xxHash default behavior is to trigger a memory access error, since it is a bad pointer.
55 ** When this option is enabled, xxHash output for null input pointers will be the same as a null-length input.
230 FORCE_INLINE U32 XXH32_endian_align(const void* input, unsigned int len, U32 seed, XXH_endianess endian, XXH_alignment align) argument
232 const BYTE* p = (const BYTE*)input;
290 U32 XXH32(const void* input, unsigned int len, U32 seed) argument
295 XXH32_update(state, input, len);
301 if ((((size_t)input) & 3) == 0) /* Input is aligned, let's leverage the speed advantage */
304 return XXH32_endian_align(input, le
365 XXH32_update_endian(void* state_in, const void* input, int len, XXH_endianess endian) argument
430 XXH32_update(void* state_in, const void* input, unsigned int len) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Dprparser.l4 * Module Name: prparser.l - Flex input file for preprocessor lexer
294 while (((c = input ()) != '*') && (c != EOF))
302 if (((c = input ()) != '/') && (c != EOF))
335 while (((c = input ()) != '\n') && (c != EOF))
/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_fe_round.c23 double input; member in struct:__anon3604
80 received = lrint(values[i].input);
84 "input: %f (index %d): got %ld, expected %ld\n",
85 values[i].input, i, received, values[i].expected);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dxdelta.c86 const unsigned char *input = (const unsigned char *)data;
87 const unsigned char *last = input + MATCH_BLOCKSIZE;
92 for (; input < last; input += 8)
94 s1 += input[0]; s2 += s1;
95 s1 += input[1]; s2 += s1;
96 s1 += input[2]; s2 += s1;
97 s1 += input[3]; s2 += s1;
98 s1 += input[4]; s2 += s1;
99 s1 += input[
85 const unsigned char *input = (const unsigned char *)data; local
[all...]
/freebsd-11-stable/contrib/dialog/
H A Dinputbox.c4 * inputbox.c -- implements the input box
77 char *input; local
88 input = dlg_set_result(init);
129 /* Draw the input field box */
139 /* Make a window for the input-field, to associate bindings */
143 if (*input != '\0') {
144 dlg_show_string(editor, input, chr_offset, inputbox_attr,
157 col_offset = dlg_edit_offset(input, chr_offset, box_width);
163 if (*input != '\0' && !edited) {
164 dlg_show_string(editor, input, chr_offse
[all...]
/freebsd-11-stable/sbin/restore/
H A Dinteractive.c306 static char input[BUFSIZ]; local
308 # define rawname input /* save space by reusing input buffer */
323 if (fgets(input, BUFSIZ, terminal) == NULL) {
327 } while (input[0] == '\n');
328 for (cp = &input[strlen(input) - 2]; *cp == ' ' || *cp == '\t'; cp--)
334 cp = copynext(input, cmd);
391 * Strip off the next token of the input.
394 copynext(char *input, cha argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Ddes.h132 void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output,
135 DES_LONG DES_cbc_cksum(const unsigned char *input, DES_cblock *output,
139 void DES_cbc_encrypt(const unsigned char *input, unsigned char *output,
142 void DES_ncbc_encrypt(const unsigned char *input, unsigned char *output,
145 void DES_xcbc_encrypt(const unsigned char *input, unsigned char *output,
152 void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output,
181 void DES_ede3_cbc_encrypt(const unsigned char *input, unsigned char *output,
216 void DES_pcbc_encrypt(const unsigned char *input, unsigned char *output,
219 DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
/freebsd-11-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent_struct.h86 /** An input buffer. Only the bufferevent is allowed to add data to
88 struct evbuffer *input; member in struct:bufferevent
90 /** An input buffer. Only the bufferevent is allowed to drain data
/freebsd-11-stable/contrib/gcc/
H A Dopts-common.c33 multiple sub-matches can occur, e.g. input of "-pedantic" matching
52 find_opt (const char *input, int lang_mask) argument
62 cl_options[mn] <= input < cl_options[mn + 1]. */
67 comp = strncmp (input, cl_options[md].opt_text + 1, opt_len);
86 /* Is the input either an exact match or a prefix that takes a
88 if (!strncmp (input, opt->opt_text + 1, opt->opt_len)
89 && (input[opt->opt_len] == '\0' || (opt->flags & CL_JOINED)))
H A Dopts.h84 /* The count of input filenames. */
88 size_t find_opt (const char *input, int lang_mask);
/freebsd-11-stable/contrib/dialog/samples/
H A Dtreeview217 $CUT >$input <<-EOF
47 --treeview "TreeView demo" 0 0 10 `cat $input | sed -e 's/:/ /g'` 2> $output
/freebsd-11-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Dencrypt.h81 int (*input) (int); member in struct:__anon5921
/freebsd-11-stable/lib/libmd/
H A Dmd4c.c112 const void *in; /* input block */
113 unsigned int inputLen; /* length of input block */
116 const unsigned char *input = in; local
131 ((POINTER)&context->buffer[idx], (CONST_POINTER)input, partLen);
135 MD4Transform (context->state, &input[i]);
142 /* Buffer remaining input */
144 ((POINTER)&context->buffer[idx], (CONST_POINTER)&input[i],
260 /* Encodes input (UINT4) into output (unsigned char). Assumes len is
263 static void Encode (output, input, len)
265 UINT4 *input;
[all...]
/freebsd-11-stable/gnu/usr.bin/groff/src/roff/troff/
H A DMakefile4 SRCS= dictionary.cpp div.cpp env.cpp input.cpp \
/freebsd-11-stable/crypto/openssl/apps/
H A Dtsget152 my $input = $_;
153 my ($base, $path) = fileparse($input, '\.[^.]*');
157 STDERR->printflush("$input: ") if $options{v};
160 if ($input eq "-") {
165 open INPUT, "<" . $input
166 or warn("$input: could not open input file: $!\n"), next REQUEST;
169 or warn("$input: could not close input file: $!\n"), next REQUEST;
177 die "$input
[all...]
/freebsd-11-stable/contrib/wpa/src/common/
H A Dctrl_iface_common.h36 socklen_t fromlen, const char *input);
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dencrypt.h84 int (*input)(int); member in struct:__anon3599
/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dwlanconfig82 local input regdomains countries regdomain country prompt
90 input=$( ifconfig "$WLAN_IFACE" list countries | sed -e 's/DEBUG//gi' )
91 regdomains=$( echo "$input" | awk '
98 countries=$( echo "$input" | awk '
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_svn/
H A Dwrapped_sasl.c183 const char *input, unsigned inputlen,
186 return sasl_encode(conn, input, inputlen, output, outputlen);
191 const char *input, unsigned inputlen,
194 return sasl_decode(conn, input, inputlen, output, outputlen);
182 svn_sasl__encode(sasl_conn_t *conn, const char *input, unsigned inputlen, const char **output, unsigned *outputlen) argument
190 svn_sasl__decode(sasl_conn_t *conn, const char *input, unsigned inputlen, const char **output, unsigned *outputlen) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dfnv1a.h94 const void *input,

Completed in 718 milliseconds

1234567891011>>