Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 519) sorted by relevance

12345678910>>...21

/dragonfly/contrib/ldns/compat/
H A Db64_ntop.c117 uint8_t input[3]; in ldns_b64_ntop() local
131 input[0] = *src++; in ldns_b64_ntop()
132 input[1] = *src++; in ldns_b64_ntop()
133 input[2] = *src++; in ldns_b64_ntop()
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()
157 input[0] = input[1] = input[2] = (uint8_t) '\0'; in ldns_b64_ntop()
159 input[i] = *src++; in ldns_b64_ntop()
162 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); in ldns_b64_ntop()
[all …]
/dragonfly/contrib/binutils-2.27/libiberty/
H A Dargv.c116 (*input)++; in consume_whitespace()
123 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
124 input++; in only_whitespace()
126 return (*input == EOS); in only_whitespace()
181 if (input != NULL) in buildargv()
209 while (*input != EOS) in buildargv()
220 *arg++ = *input; in buildargv()
234 *arg++ = *input; in buildargv()
245 *arg++ = *input; in buildargv()
260 *arg++ = *input; in buildargv()
[all …]
/dragonfly/sys/crypto/rijndael/
H A Drijndael-api-fst.c103 input += 16; in rijndael_blockEncrypt()
111 memcpy(iv, input, 16); in rijndael_blockEncrypt()
123 input += 16; in rijndael_blockEncrypt()
127 memcpy(iv, input, 16); in rijndael_blockEncrypt()
140 input += 16; in rijndael_blockEncrypt()
218 input += 16; in rijndael_padEncrypt()
239 input += 16; in rijndael_padEncrypt()
281 input += 16; in rijndael_blockDecrypt()
310 input += 16; in rijndael_blockDecrypt()
385 input += 16; in rijndael_padDecrypt()
[all …]
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dargv.c123 (*input)++; in consume_whitespace()
130 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
131 input++; in only_whitespace()
133 return (*input == EOS); in only_whitespace()
188 if (input != NULL) in buildargv()
216 while (*input != EOS) in buildargv()
227 *arg++ = *input; in buildargv()
241 *arg++ = *input; in buildargv()
252 *arg++ = *input; in buildargv()
267 *arg++ = *input; in buildargv()
[all …]
/dragonfly/contrib/gdb-7/libiberty/
H A Dargv.c120 (*input)++; in consume_whitespace()
127 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
128 input++; in only_whitespace()
130 return (*input == EOS); in only_whitespace()
185 if (input != NULL) in buildargv()
213 while (*input != EOS) in buildargv()
224 *arg++ = *input; in buildargv()
238 *arg++ = *input; in buildargv()
249 *arg++ = *input; in buildargv()
264 *arg++ = *input; in buildargv()
[all …]
/dragonfly/contrib/gcc-8.0/libiberty/
H A Dargv.c123 (*input)++; in consume_whitespace()
130 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
131 input++; in only_whitespace()
133 return (*input == EOS); in only_whitespace()
188 if (input != NULL) in buildargv()
216 while (*input != EOS) in buildargv()
227 *arg++ = *input; in buildargv()
241 *arg++ = *input; in buildargv()
252 *arg++ = *input; in buildargv()
267 *arg++ = *input; in buildargv()
[all …]
/dragonfly/contrib/gcc-4.7/libiberty/
H A Dargv.c127 (*input)++; in consume_whitespace()
134 while (*input != EOS && ISSPACE (*input)) in only_whitespace()
135 input++; in only_whitespace()
137 return (*input == EOS); in only_whitespace()
192 if (input != NULL) in buildargv()
229 while (*input != EOS) in buildargv()
240 *arg++ = *input; in buildargv()
254 *arg++ = *input; in buildargv()
265 *arg++ = *input; in buildargv()
280 *arg++ = *input; in buildargv()
[all …]
/dragonfly/sys/crypto/chacha20/
H A Dchacha.c121 j0 = x->input[0]; in chacha_encrypt_bytes()
122 j1 = x->input[1]; in chacha_encrypt_bytes()
123 j2 = x->input[2]; in chacha_encrypt_bytes()
124 j3 = x->input[3]; in chacha_encrypt_bytes()
125 j4 = x->input[4]; in chacha_encrypt_bytes()
126 j5 = x->input[5]; in chacha_encrypt_bytes()
127 j6 = x->input[6]; in chacha_encrypt_bytes()
128 j7 = x->input[7]; in chacha_encrypt_bytes()
129 j8 = x->input[8]; in chacha_encrypt_bytes()
130 j9 = x->input[9]; in chacha_encrypt_bytes()
[all …]
/dragonfly/lib/libc/net/
H A Dbase64.c130 unsigned char input[3]; in b64_ntop() local
135 input[0] = *src++; in b64_ntop()
136 input[1] = *src++; in b64_ntop()
137 input[2] = *src++; in b64_ntop()
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()
156 input[0] = input[1] = input[2] = '\0'; in b64_ntop()
158 input[i] = *src++; in b64_ntop()
161 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); in b64_ntop()
[all …]
/dragonfly/crypto/openssh/
H A Dchacha.c100 j0 = x->input[0]; in chacha_encrypt_bytes()
101 j1 = x->input[1]; in chacha_encrypt_bytes()
102 j2 = x->input[2]; in chacha_encrypt_bytes()
103 j3 = x->input[3]; in chacha_encrypt_bytes()
104 j4 = x->input[4]; in chacha_encrypt_bytes()
105 j5 = x->input[5]; in chacha_encrypt_bytes()
106 j6 = x->input[6]; in chacha_encrypt_bytes()
107 j7 = x->input[7]; in chacha_encrypt_bytes()
108 j8 = x->input[8]; in chacha_encrypt_bytes()
109 j9 = x->input[9]; in chacha_encrypt_bytes()
[all …]
/dragonfly/games/atc/
H A Dgraphics.c235 wclrtoeol(input); in ioclrtoeol()
236 wrefresh(input); in ioclrtoeol()
244 wrefresh(input); in iomove()
253 wrefresh(input); in ioaddstr()
261 wrefresh(input); in ioclrtobot()
275 wrefresh(input); in ioerror()
289 wrefresh(input); in quit()
308 wrefresh(input); in quit()
362 wrefresh(input); in loser()
387 touchwin(input); in redraw()
[all …]
/dragonfly/games/gomoku/
H A Dmain.c86 int input[2]; in main() local
186 input[BLACK] = INPUTF; in main()
187 input[WHITE] = INPUTF; in main()
191 input[color] = USER; in main()
196 input[BLACK] = USER; in main()
197 input[WHITE] = USER; in main()
298 else if (input[0] == USER && input[1] == USER) in main()
367 char input[128]; in whatsup() local
374 if (!get_line(input, sizeof(input))) in whatsup()
376 switch (*input) { in whatsup()
[all …]
/dragonfly/contrib/nvi2/ex/
H A Dex_filter.c78 input[0] = input[1] = output[0] = output[1] = -1; in ex_filter()
98 err: if (input[0] != -1) in ex_filter()
99 (void)close(input[0]); in ex_filter()
100 if (input[1] != -1) in ex_filter()
101 (void)close(input[1]); in ex_filter()
120 if (input[0] != -1) in ex_filter()
126 if (input[0] != -1) in ex_filter()
127 (void)close(input[0]); in ex_filter()
128 if (input[1] != -1) in ex_filter()
129 (void)close(input[1]); in ex_filter()
[all …]
H A Dex_map.c45 CHAR_T *input, *p; in ex_map() local
57 input = cmdp->argv[0]->bp; in ex_map()
69 if (input[0] == '#' && isdigit(input[1])) { in ex_map()
70 for (p = input + 2; isdigit(*p); ++p); in ex_map()
74 if (seq_set(sp, NULL, 0, input, cmdp->argv[0]->len, in ex_map()
79 sp->gp->scr_fmap(sp, stype, input, cmdp->argv[0]->len, in ex_map()
84 nofunc: if (stype == SEQ_COMMAND && input[1] == '\0') in ex_map()
85 switch (KEY_VAL(sp, input[0])) { in ex_map()
91 KEY_NAME(sp, input[0])); in ex_map()
94 return (seq_set(sp, NULL, 0, input, cmdp->argv[0]->len, in ex_map()
/dragonfly/crypto/libressl/crypto/chacha/
H A Dchacha-merged.c24 u32 input[16]; member
136 j0 = x->input[0]; in chacha_encrypt_bytes()
137 j1 = x->input[1]; in chacha_encrypt_bytes()
138 j2 = x->input[2]; in chacha_encrypt_bytes()
139 j3 = x->input[3]; in chacha_encrypt_bytes()
140 j4 = x->input[4]; in chacha_encrypt_bytes()
141 j5 = x->input[5]; in chacha_encrypt_bytes()
142 j6 = x->input[6]; in chacha_encrypt_bytes()
143 j7 = x->input[7]; in chacha_encrypt_bytes()
144 j8 = x->input[8]; in chacha_encrypt_bytes()
[all …]
/dragonfly/contrib/awk/
H A Dlex.c96 int c = input(); in peek()
108 c = input(); in gettok()
228 input(); in yylex()
231 input(); input(); /* \n */ in yylex()
239 input(); RET(AND); in yylex()
244 input(); RET(BOR); in yylex()
295 input(); /* eat 2nd * */ in yylex()
396 c = input(); in string()
430 c = input(); in string()
456 c = input(); in string()
[all …]
/dragonfly/stand/boot/common/
H A Ddo_dloader.c124 input[0] = '\0'; in interact()
126 ngets(input, sizeof(input)); in interact()
127 if (!parse(&argc, &argv, input)) { in interact()
232 while (fgets(input, sizeof(input), fd) != NULL) { in include()
235 if(strlen(input) == sizeof(input) - 1 && in include()
236 !iseol(input[sizeof(input) - 2])) { in include()
239 printf("%s\n", input); in include()
243 if (strncmp(input+strspn(input, " "), "\\ ", 2) == 0) in include()
245 cp = input; in include()
247 if (input[0] == '@') { in include()
[all …]
/dragonfly/contrib/binutils-2.27/ld/
H A Dplugin.c475 bfd *abfd = input->abfd; in add_symbols()
529 input->name, (long) input->filesize); in get_view()
600 if (input->fd != -1) in release_input_file()
602 close (input->fd); in release_input_file()
603 input->fd = -1; in release_input_file()
1104 input = bfd_alloc (abfd, sizeof (*input)); in plugin_object_p()
1105 if (input == NULL) in plugin_object_p()
1132 file.handle = input; in plugin_object_p()
1134 input->abfd = abfd; in plugin_object_p()
1138 input->fd = fd; in plugin_object_p()
[all …]
/dragonfly/contrib/binutils-2.34/ld/
H A Dplugin.c542 input->name, (long) input->filesize); in get_view()
613 if (input->fd != -1) in release_input_file()
615 close (input->fd); in release_input_file()
616 input->fd = -1; in release_input_file()
1191 input = bfd_alloc (abfd, sizeof (*input)); in plugin_object_p()
1192 if (input == NULL) in plugin_object_p()
1206 file.handle = input; in plugin_object_p()
1207 input->abfd = abfd; in plugin_object_p()
1211 input->fd = file.fd; in plugin_object_p()
1233 close (input->fd); in plugin_object_p()
[all …]
/dragonfly/sys/dev/drm/amd/display/dc/calcs/
H A Ddcn_calcs.c351 input->src.viewport_width_c = input->src.viewport_width / 2; in pipe_ctx_to_e2e_pipe_params()
352 input->src.viewport_height_c = input->src.viewport_height / 2; in pipe_ctx_to_e2e_pipe_params()
357 input->src.viewport_width_c = input->src.viewport_width / 2; in pipe_ctx_to_e2e_pipe_params()
358 input->src.viewport_height_c = input->src.viewport_height / 2; in pipe_ctx_to_e2e_pipe_params()
364 input->src.viewport_width_c = input->src.viewport_width; in pipe_ctx_to_e2e_pipe_params()
365 input->src.viewport_height_c = input->src.viewport_height; in pipe_ctx_to_e2e_pipe_params()
369 input->src.viewport_width_c = input->src.viewport_width; in pipe_ctx_to_e2e_pipe_params()
370 input->src.viewport_height_c = input->src.viewport_height; in pipe_ctx_to_e2e_pipe_params()
409 input->dest.hblank_end = input->dest.hblank_start in pipe_ctx_to_e2e_pipe_params()
416 input->dest.vblank_end = input->dest.vblank_start in pipe_ctx_to_e2e_pipe_params()
[all …]
/dragonfly/contrib/nvi2/common/
H A Dseq.c82 if ((qp->input = v_wstrdup(sp, input, ilen)) == NULL) { in seq_set()
94 free(qp->input); in seq_set()
115 if ((qp->input[0] & ~MAX_BIT_SEQ) == 0) in seq_set()
116 bit_set(sp->gp->seqb, qp->input[0]); in seq_set()
135 diff = MEMCMP(qp->input, input, ilen); in seq_delete()
163 free(qp->input); in seq_free()
203 if (qp->input[0] > c_input[0]) in seq_find()
205 if (qp->input[0] < c_input[0] || in seq_find()
210 if (qp->input[0] > e_input->e_c) in seq_find()
212 if (qp->input[0] < e_input->e_c || in seq_find()
[all …]
/dragonfly/contrib/zstd/lib/common/
H A Dxxhash.c287 seed += input * PRIME32_2; in XXH32_round()
295 const BYTE* p = (const BYTE*)input; in XXH32_endian_align()
356 XXH32_update(state, input, len); in XXH32()
379 acc += input * PRIME64_2; in XXH64_round()
395 const BYTE* p = (const BYTE*)input; in XXH64_endian_align()
468 XXH64_update(state, input, len); in XXH64()
544 const BYTE* p = (const BYTE*)input; in XXH32_update_endian()
548 if (input==NULL) return XXH_ERROR; in XXH32_update_endian()
664 const BYTE* p = (const BYTE*)input; in XXH64_update_endian()
668 if (input==NULL) return XXH_ERROR; in XXH64_update_endian()
[all …]
/dragonfly/sys/vfs/hammer2/xxhash/
H A Dxxhash.c322 seed += input * PRIME32_2; in XXH32_round()
330 const BYTE* p = (const BYTE*)input; in XXH32_endian_align()
391 XXH32_update(state, input, len); in XXH32()
412 static U64 XXH64_round(U64 acc, U64 input) in XXH64_round() argument
414 acc += input * PRIME64_2; in XXH64_round()
430 const BYTE* p = (const BYTE*)input; in XXH64_endian_align()
503 XXH64_update(state, input, len); in XXH64()
584 const BYTE* p = (const BYTE*)input; in XXH32_update_endian()
588 if (input==NULL) return XXH_ERROR; in XXH32_update_endian()
703 const BYTE* p = (const BYTE*)input; in XXH64_update_endian()
[all …]
/dragonfly/sys/libprop/
H A Dprop_data.c110 uint8_t input[3]; in _prop_data_externalize() local
120 input[0] = *src++; in _prop_data_externalize()
121 input[1] = *src++; in _prop_data_externalize()
122 input[2] = *src++; in _prop_data_externalize()
126 ((uint32_t)input[1] >> 4); in _prop_data_externalize()
128 ((uint32_t)input[2] >> 6); in _prop_data_externalize()
129 output[3] = input[2] & 0x3f; in _prop_data_externalize()
147 input[0] = input[1] = input[2] = '\0'; in _prop_data_externalize()
149 input[i] = *src++; in _prop_data_externalize()
153 ((uint32_t)input[1] >> 4); in _prop_data_externalize()
[all …]
/dragonfly/contrib/file/magic/Magdir/
H A Dtroff8 # troff input
9 0 search/1 .\\" troff or preprocessor input text
11 0 search/1 '\\" troff or preprocessor input text
13 0 search/1 '.\\" troff or preprocessor input text
15 0 search/1 \\" troff or preprocessor input text
17 #0 search/1 ''' troff or preprocessor input text
19 0 regex/20l \^\\.[A-Za-z][A-Za-z0-9][\ \t] troff or preprocessor input text
21 0 regex/20l \^\\.[A-Za-z][A-Za-z0-9]$ troff or preprocessor input text

12345678910>>...21