Searched refs:input (Results 426 - 450 of 574) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/groff/src/preproc/tbl/
H A Dmain.cpp115 error("invalid input character code 0");
148 error("invalid input character code 0");
256 table_input input(fp);
257 process_table(input);
259 if (input.ended()) {
761 error("end of input while processing format");
/freebsd-11-stable/sys/dev/drm/
H A Dr600_blit.c1646 static inline uint32_t i2f(uint32_t input) argument
1650 if ((input & 0x3fff) == 0)
1654 fraction = (input & 0x3fff) << 10; /* cheat and only
/freebsd-11-stable/crypto/openssl/util/
H A Dpod2man.pl25 B<pod2man> converts its input file containing embedded pod directives (see
54 the modification date of the input file will be used.
201 (F) The input file wasn't available for the given reason.
1051 # escape high bit characters in input stream
/freebsd-11-stable/usr.sbin/cdcontrol/
H A Dcdcontrol.c140 static char *input(int *);
279 arg = input (&cmd);
1161 input(int *cmd) function
/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dzfsboot1674 # Prompt the user to input/change the name for the new pool
1675 f_dialog_input input \
1678 ZFSBOOT_POOL_NAME="$input"
1720 # Prompt the user to input/change the swap size for each disk
1722 f_dialog_input input \
1725 ZFSBOOT_SWAP_SIZE="${input:-0}"
/freebsd-11-stable/contrib/ofed/libibverbs/
H A Dverbs.h186 /* An extensible input struct for possible future extensions of the
1541 const struct ibv_query_device_ex_input *input,
1743 /* Old MR is valid, invalid input */
1975 * @srq_attr: On input, specifies the SRQ attributes to modify. On output,
2076 const struct ibv_query_device_ex_input *input,
2086 ret = vctx->query_device_ex(context, input, attr, sizeof(*attr));
2181 * @wq_attr: On input, specifies the WQ attributes to modify.
2075 ibv_query_device_ex(struct ibv_context *context, const struct ibv_query_device_ex_input *input, struct ibv_device_attr_ex *attr) argument
/freebsd-11-stable/contrib/gcc/
H A Dtree-outof-ssa.c775 tree input = TREE_VALUE (link); local
780 if (TREE_CODE (input) != SSA_NAME && !DECL_P (input))
794 p2 = var_to_partition (map, input);
/freebsd-11-stable/contrib/groff/src/preproc/pic/
H A Dmain.cpp46 class top_input : public input {
86 error("invalid input character code %1", int(c));
158 error("invalid input character code %1", int(c));
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dparse.c1313 YYDPRINTF ((stderr, "Now at end of input.\n"));
1554 /* Return failure if at end of input. */
/freebsd-11-stable/crypto/openssl/ssl/
H A Ds3_cbc.c137 rec->input += block_size;
H A Dssl3.h423 */ unsigned char *input; member in struct:ssl3_record_st
545 * Opaque PRF input as used for the current handshake. These fields are
/freebsd-11-stable/contrib/nvi/cl/
H A Dcl_term.c142 * in input mapping. That combination is the only one we'll
177 qp->input, qp->ilen, qp->output, qp->olen);
/freebsd-11-stable/usr.bin/lex/
H A Dinitscan.c154 /* Size of default input buffer. */
183 /* Return all but the first "n" matched characters back to the input stream. */
205 char *yy_ch_buf; /* input buffer */
206 char *yy_buf_pos; /* current position in input buffer */
208 /* Size of input buffer in bytes, not including room for EOB
224 /* Whether this is an "interactive" input source; if so, and
225 * if we're using stdio for input, then we want to use getc()
226 * instead of fread(), to make sure we stop fetching input after
240 /* Whether to try to fill the input buffer when we reach the
251 * shouldn't try reading from the input sourc
[all...]
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-ppc.pl10 # I let hardware handle unaligned input(*), except on page boundaries
220 ; look for particular offending word, but rather for 64-byte input
/freebsd-11-stable/contrib/libxo/libxo/
H A Dlibxo.c377 * input buffer. This is mostly compatible with printf and caller's
475 xo_set_options_simple (xo_handle_t *xop, const char *input);
1053 * Identify an input and output character, and convert it.
1121 * Build a wide character from the input buffer; the number of
1206 * Build our wide character from the input buffer; the number of
2191 * Fill in the color map, based on the input string; currently unimplemented
2235 xo_set_options_simple (xo_handle_t *xop, const char *input) argument
2239 ssize_t len = strlen(input) + 1;
2242 memcpy(bp, input, len);
2274 * passed in. The input i
2282 xo_set_options(xo_handle_t *xop, const char *input) argument
[all...]
H A Dxo.h176 xo_set_options (xo_handle_t *xop, const char *input);
/freebsd-11-stable/contrib/ofed/libmlx4/
H A Dmlx4.h360 const struct ibv_query_device_ex_input *input,
/freebsd-11-stable/sys/dev/vt/
H A Dvt_sysmouse.c56 #include <dev/evdev/input.h>
/freebsd-11-stable/usr.bin/indent/
H A Dio.c331 * FUNCTION: Reads one block of input into input_buffer
334 * Willcox of CAC Added check for switch back to partly full input
340 { /* this routine reads stuff from the input */
343 FILE *f = input;
345 if (bp_save != NULL) { /* there is a partly filled input buffer left */
359 errx(1, "input line too long");
493 * ALGORITHM: Run thru input string and add appropriate values to current
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dtls_wolfssl.c43 /* tls input data for wolfSSL Read Callback */
71 struct tls_in_data input; member in struct:tls_connection
310 wolfSSL_SetIOReadCtx(conn->ssl, &conn->input);
1695 wolfssl_reset_in_data(&conn->input, in_data);
1775 wolfssl_reset_in_data(&conn->input, in_data);
1782 * input data.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp194 /// Build a set of blocks to extract if the input blocks are viable.
209 llvm_unreachable("Repeated basic blocks in extraction input");
601 // If a used value is defined outside the region, it's an input. If an
786 // Add the types of the input values to the function's argument list
951 // Set names for input and output arguments.
1076 for (Value *input : inputs) {
1078 StructValues.push_back(input);
1080 params.push_back(input);
1081 if (input->isSwiftError())
1507 // coloring pass from merging slots which store input object
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dshelf2.c77 const char *input = codename; local
79 while (*input)
83 int nitems = sscanf(input, "%02x%n", &c, &nchars);
89 input += 2;
/freebsd-11-stable/sys/dev/evdev/
H A Devdev_utils.c41 #include <dev/evdev/input.h>
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_bufferevent.c94 if (evbuffer_get_length(bev->input) == 8333) {
344 int len = (int)evbuffer_get_length(bev->input);
/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex395 representations. It can take its input in one of three different
403 \item filesystem (\texttt{fs}), input is a directory tree in the
417 input, this allows \dtc to act as a ``decompiler''.
509 the blob input mode, it can also be used for diagnosing problems with

Completed in 185 milliseconds

<<11121314151617181920>>