Searched refs:input (Results 276 - 300 of 574) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm.c258 fprintf(stderr, "%s: No input file specifiled\n", appname);
571 int input; local
580 input = getchar();
581 input = toupper(input);
583 if (input == 'T') {
586 } else if (input == 'F') {
592 putchar(input);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp135 std::vector<EditLineStringType> SplitLines(const EditLineStringType &input) { argument
138 while (start < input.length()) {
139 size_t end = input.find('\n', start);
141 result.insert(result.end(), input.substr(start));
144 result.insert(result.end(), input.substr(start, end - start));
541 // Detect when the number of rows used for this input line changes due to
656 // Don't perform end of input detection when pasting, always treat this as a
677 // The completion test is allowed to change the input lines when complete
1043 // Disable edit mode to stop the terminal from flushing all input during
1281 // Disable edit mode to stop the terminal from flushing all input durin
1398 auto input = el_wgets(m_editline, &count); local
[all...]
/freebsd-11-stable/tools/tools/crypto/
H A Dcryptocheck.c441 const char *iv, const char *input, char *output, size_t size, int enc)
456 (const u_char *)input, size) != 1)
472 const char *iv, const char *input, char *output, size_t size, int enc,
496 cop.src = (char *)input;
599 const char *aad, size_t aad_len, const char *input, char *output,
631 caead.src = (char *)input;
651 cop.src = (char *)input;
794 const char *iv, const char *aad, size_t aad_len, const char *input,
817 (const u_char *)input, size) != 1)
837 size_t iv_len, const char *aad, size_t aad_len, const char *input,
440 openssl_cipher(struct alg *alg, const EVP_CIPHER *cipher, const char *key, const char *iv, const char *input, char *output, size_t size, int enc) argument
471 ocf_cipher(struct alg *alg, const char *key, size_t key_len, const char *iv, const char *input, char *output, size_t size, int enc, int *cridp) argument
597 ocf_authenc(struct alg *alg, const char *cipher_key, size_t cipher_key_len, const char *iv, size_t iv_len, const char *auth_key, size_t auth_key_len, const char *aad, size_t aad_len, const char *input, char *output, size_t size, char *digest, int enc, int *cridp) argument
793 openssl_gcm_encrypt(struct alg *alg, const EVP_CIPHER *cipher, const char *key, const char *iv, const char *aad, size_t aad_len, const char *input, char *output, size_t size, char *tag) argument
836 ocf_gcm(struct alg *alg, const char *key, size_t key_len, const char *iv, size_t iv_len, const char *aad, size_t aad_len, const char *input, char *output, size_t size, char *tag, int enc, int *cridp) argument
889 openssl_gcm_decrypt(struct alg *alg, const EVP_CIPHER *cipher, const char *key, const char *iv, const char *aad, size_t aad_len, const char *input, char *output, size_t size, char *tag) argument
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Drclex.c110 /* External input stream from resrc */
267 const char *input = rclex_tok; local
273 ret = get_string (strlen (input) + 1);
276 t = input;
430 const char *input = rclex_tok; local
436 ret = get_unistring (strlen (input) + 1);
439 t = input;
H A Dmcparse.y52 %start input
67 input: entities label
/freebsd-11-stable/contrib/libreadline/
H A DMakefile.in107 $(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \
125 util.o kill.o undo.o macro.o input.o callback.o terminal.o \
334 input.o: ansi_stdlib.h
335 input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
336 input.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
414 input.o: rlprivate.h
439 input.o: xmalloc.h
461 input.o: rlmbutil.h
476 input.o: $(srcdir)/input
[all...]
H A Dinput.c0 /* input.c -- character input functions for readline. */
6 reading lines of text with interactive input and history editing.
85 character input. */
146 /* Stuff KEY into the *front* of the input buffer.
179 char input; local
214 chars_avail = read (tty, &input, 1);
228 /* Use getch/_kbhit to check for available console input, in the same way
244 /* One cannot read all of the available input. I can only read a single
245 character at a time, or else programs which require input ca
[all...]
/freebsd-11-stable/contrib/ntp/sntp/tests/
H A DMakefile.am60 data/debug-input-lfp-bin \
61 data/debug-input-lfp-dec \
62 data/debug-input-pkt \
/freebsd-11-stable/sys/arm/at91/
H A Dat91_pmc.c438 uint32_t input, mul1; local
440 input = clk->parent->hz / i;
441 if (input < clk->pll_min_in)
443 if (input > clk->pll_max_in)
446 mul1 = out_freq / input;
452 diff1 = out_freq - input * mul1;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBTypeCategory.cpp420 StringList input; local
421 input.SplitIntoLines(script, strlen(script));
431 if (interpreter_ptr->GenerateTypeScriptFunction(input, output,
544 StringList input; local
545 input.SplitIntoLines(script, strlen(script));
555 if (interpreter_ptr->GenerateTypeSynthClass(input, output,
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dbufferevent_openssl.c140 struct evbuffer *input; local
149 input = bufferevent_get_input(b->ptr);
150 if (evbuffer_get_length(input) == 0) {
155 r = evbuffer_remove(input, out, outlen);
579 struct evbuffer *input = bev->input; local
591 n = evbuffer_reserve_space(input, n_to_read, space, 2);
634 evbuffer_commit_space(input, space, n_used);
731 struct evbuffer *input = bev->bev.bev.input; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libnvpair/
H A Dnvpair_json.c38 * 1. The input String is encoded in the current locale.
47 nvlist_print_json_string(FILE *fp, const char *input) argument
56 while ((sz = mbrtowc(&c, input, MB_CUR_MAX, &mbr)) > 0) {
97 input += sz;
/freebsd-11-stable/crypto/openssl/ssl/
H A Dt1_enc.c777 if (rec->data != rec->input)
779 * we can't write into the input stream: Can this ever
783 "%s:%d: rec->data != rec->input\n",
785 else if (RAND_bytes(rec->input, ivlen) <= 0)
807 memmove(rec->data, rec->input, rec->length);
808 rec->input = rec->data;
859 rec->input[k] = j;
867 "EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n",
868 ds, rec->data, rec->input, l);
877 fprintf(stderr, "\trec->input
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dlex.c46 void * input; member in struct:inputsource
193 void *input, const char *name)
205 source->input = input;
232 * Open 'filename' and make it the current input source for 'lex'.
252 * Make 'stream' the current input source for 'lex'.
267 * Make 'buffer' the current input source for 'lex'.
294 (void)fclose((FILE *)(source->input));
420 flockfile(source->input);
426 stream = source->input;
192 new_source(isc_lex_t *lex, isc_boolean_t is_file, isc_boolean_t need_close, void *input, const char *name) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Ddes_old.h338 void _ossl_old_des_ecb3_encrypt(_ossl_old_des_cblock *input,
343 DES_LONG _ossl_old_des_cbc_cksum(_ossl_old_des_cblock *input,
347 void _ossl_old_des_cbc_encrypt(_ossl_old_des_cblock *input,
351 void _ossl_old_des_ncbc_encrypt(_ossl_old_des_cblock *input,
355 void _ossl_old_des_xcbc_encrypt(_ossl_old_des_cblock *input,
365 void _ossl_old_des_ecb_encrypt(_ossl_old_des_cblock *input,
378 void _ossl_old_des_ede3_cbc_encrypt(_ossl_old_des_cblock *input,
418 void _ossl_old_des_pcbc_encrypt(_ossl_old_des_cblock *input,
422 DES_LONG _ossl_old_des_quad_cksum(_ossl_old_des_cblock *input,
/freebsd-11-stable/usr.bin/unifdef/
H A Dunifdef.c57 /* types of input lines: */
173 static FILE *input; /* input file pointer */ variable
174 static const char *filename; /* input file name */
180 static char *tempname; /* avoid splatting input */
182 static char tline[MAXLINE+EDITSLOP];/* input buffer plus space */
187 * input's, and unifdef correctly handles CRLF or LF endings whatever
190 * When the output isn't a processed input file (when it is error /
194 static const char *newline; /* input file format */
352 errx(2, "-s only works with one input fil
[all...]
/freebsd-11-stable/usr.bin/mail/
H A Dlex.c196 * Interpret user commands one by one. If standard input is not a tty,
229 * Read a line of commands from the current input
234 if (readline(input, &linebuf[n], LINESIZE - n) < 0) {
690 oldin = input;
691 input = in;
697 input = oldin;
/freebsd-11-stable/bin/sh/
H A DMakefile11 histedit.c input.c jobs.c kill.c mail.c main.c memalloc.c miscbltin.c \
/freebsd-11-stable/usr.bin/dtc/
H A Ddtb.hh94 * human-friendly error messages about malformed DTB input.
320 bool read_dtb(input_buffer &input);
/freebsd-11-stable/sys/modules/linux64/
H A DMakefile39 ${OBJCOPY} --input-target binary --output-target elf64-x86-64-freebsd \
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DGDBRemote.h143 static StringRef input(StringRef, void *,
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_fs_util.h223 svn_mergeinfo_t input,
/freebsd-11-stable/contrib/ipfilter/iplang/
H A Diplang_l.l311 c = input();
315 c = input();
/freebsd-11-stable/crypto/openssh/
H A Dumac.c216 UINT8 nonce[AES_BLOCK_LEN]; /* The AES input making above cache */
826 * bytes input to UMAC per tag, ie. 16MB).
1041 static int uhash_update(uhash_ctx_t ctx, const u_char *input, long len) argument
1051 nh_update(&ctx->hash, (const UINT8 *)input, len);
1066 nh_update(&ctx->hash, (const UINT8 *)input, bytes_remaining);
1071 input += bytes_remaining;
1074 /* Hash directly from input stream if enough bytes */
1076 nh(&ctx->hash, (const UINT8 *)input, L1_KEY_LEN,
1080 input += L1_KEY_LEN;
1085 /* pass remaining < L1_KEY_LEN bytes of input dat
1248 umac_update(struct umac_ctx *ctx, const u_char *input, long len) argument
[all...]
/freebsd-11-stable/contrib/byacc/test/
H A Dbtyacc_demo.y89 %start input
106 input: decl_list(global_scope = new_scope(0)) ; label

Completed in 325 milliseconds

<<11121314151617181920>>