Searched refs:input (Results 26 - 50 of 574) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/cxgbe/cudbg/
H A Dfastlz.h41 int fastlz_compress(const void *input, int length, void *output);
42 int fastlz_compress_level(int level, const void *input, int length,
44 int fastlz_decompress(const void *input, int length, void *output, int maxout);
/freebsd-11-stable/contrib/dialog/samples/
H A Deditbox39 cat << EOF > $input
15 --fixed-font "$@" --editbox $input 0 0 2>$output
H A Dmenubox1217 $CUT >$input <<-EOF
25 cat $input | sed -e 's/^/"/' -e 's/:/" "/g' -e 's/$/"/' >$output
26 cat $output >$input
38 --file $input 2> $output
H A Dreport-edit8 diff -c $input $output
H A Dbuildlist226 echo $filename $state >>$input
29 echo $count $filename $state >>$input
37 --buildlist "hello, this is a --buildlist..." 0 0 10 `cat $input` 2> $output
/freebsd-11-stable/gnu/usr.bin/groff/src/libs/libdriver/
H A DMakefile5 SRCS= input.cpp printer.cpp
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_map.c30 * ex_map -- :map[!] [input] [replacement]
49 CHAR_T *input, *p; local
57 "132|No input map entries" :
61 input = cmdp->argv[0]->bp;
73 if (input[0] == '#' && isdigit(input[1])) {
74 for (p = input + 2; isdigit(*p); ++p);
78 if (seq_set(sp, NULL, 0, input, cmdp->argv[0]->len,
83 sp->gp->scr_fmap(sp, stype, input, cmdp->argv[0]->len,
88 nofunc: if (stype == SEQ_COMMAND && input[
[all...]
/freebsd-11-stable/usr.sbin/bsdinstall/partedit/
H A Dscripted.c148 int parse_disk_config(char *input) argument
153 while (input != NULL && *input != 0) {
154 if (isspace(*input)) {
155 input++;
159 switch(*input) {
161 input++;
162 partconfig = strchr(input, '}');
165 "string: %s\n", input);
170 partconfig = input;
200 char inputbuf[len], *input = inputbuf; local
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dxmemdup.c7 @deftypefn Replacement void* xmemdup (void *@var{input}, size_t @var{copy_size}, size_t @var{alloc_size})
10 are allocated, then @var{copy_size} bytes from @var{input} are copied into
34 xmemdup (const PTR input, size_t copy_size, size_t alloc_size) argument
37 return (PTR) memcpy (output, input, copy_size);
H A Dargv.c129 pointers to copies of the string for each field. The input string
142 If the input is a null string (as opposed to a @code{NULL} pointer),
152 sequences, we allocate a working buffer at least as long as the input
154 work, since the extracted arg is never larger than the input string.
162 char **buildargv (const char *input) argument
174 if (input != NULL)
176 copybuf = (char *) alloca (strlen (input) + 1);
182 while (ISBLANK (*input))
184 input++;
213 while (*input !
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dxmemdup.c7 @deftypefn Replacement void* xmemdup (void *@var{input}, size_t @var{copy_size}, size_t @var{alloc_size})
10 are allocated, then @var{copy_size} bytes from @var{input} are copied into
34 xmemdup (const PTR input, size_t copy_size, size_t alloc_size) argument
37 return (PTR) memcpy (output, input, copy_size);
/freebsd-11-stable/sys/dev/uart/
H A Duart_cpu_sparc64.c93 * the console is an UART of course. Note that we enforce that both input
97 * environment (ie /options/output-device and /options/input-device) because
108 phandle_t chosen, input, output; local
110 if (OF_getprop(options, "input-device", dev, devsz) == -1)
112 input = OF_finddevice(dev);
116 if (input == -1 || output == -1 ||
117 OF_getproplen(input, "keyboard") >= 0) {
122 if ((input = OF_instance_to_package(inst)) == -1)
130 if (input != output)
132 if (OF_getprop(input, "device_typ
158 phandle_t input; local
182 phandle_t input; local
206 phandle_t input, options; local
[all...]
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbase64.c78 The encoding process represents 24-bit groups of input bits as output
80 24-bit input group is formed by concatenating 3 8-bit input groups.
111 always completed at the end of a quantity. When fewer than 24 input
112 bits are available in an input group, zero bits are added (on the
116 Since all base64 input is an integral number of octets, only the
120 (1) the final quantum of encoding input is an integral
124 (2) the final quantum of encoding input is exactly 8 bits;
127 (3) the final quantum of encoding input is exactly 16 bits;
137 u_char input[ local
[all...]
H A Dchacha_private.h14 u32 input[16]; /* could be compressed */ member in struct:__anon6128
59 x->input[4] = U8TO32_LITTLE(k + 0);
60 x->input[5] = U8TO32_LITTLE(k + 4);
61 x->input[6] = U8TO32_LITTLE(k + 8);
62 x->input[7] = U8TO32_LITTLE(k + 12);
69 x->input[8] = U8TO32_LITTLE(k + 0);
70 x->input[9] = U8TO32_LITTLE(k + 4);
71 x->input[10] = U8TO32_LITTLE(k + 8);
72 x->input[11] = U8TO32_LITTLE(k + 12);
73 x->input[
[all...]
/freebsd-11-stable/lib/libc/net/
H A Dbase64.c74 The encoding process represents 24-bit groups of input bits as output
76 24-bit input group is formed by concatenating 3 8-bit input groups.
107 always completed at the end of a quantity. When fewer than 24 input
108 bits are available in an input group, zero bits are added (on the
112 Since all base64 input is an integral number of octets, only the
116 (1) the final quantum of encoding input is an integral
120 (2) the final quantum of encoding input is exactly 8 bits;
123 (3) the final quantum of encoding input is exactly 16 bits;
131 u_char input[ local
[all...]
/freebsd-11-stable/contrib/libucl/examples/
H A Ducl_cpp.cc7 std::string input, err; local
9 input.assign((std::istreambuf_iterator<char>(std::cin)),
12 auto obj = ucl::Ucl::parse(input, err);
/freebsd-11-stable/contrib/unbound/compat/
H A Dchacha_private.h14 u32 input[16]; /* could be compressed */ member in struct:__anon5572
59 x->input[4] = U8TO32_LITTLE(k + 0);
60 x->input[5] = U8TO32_LITTLE(k + 4);
61 x->input[6] = U8TO32_LITTLE(k + 8);
62 x->input[7] = U8TO32_LITTLE(k + 12);
69 x->input[8] = U8TO32_LITTLE(k + 0);
70 x->input[9] = U8TO32_LITTLE(k + 4);
71 x->input[10] = U8TO32_LITTLE(k + 8);
72 x->input[11] = U8TO32_LITTLE(k + 12);
73 x->input[
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dchacha.c60 x->input[4] = U8TO32_LITTLE(k + 0);
61 x->input[5] = U8TO32_LITTLE(k + 4);
62 x->input[6] = U8TO32_LITTLE(k + 8);
63 x->input[7] = U8TO32_LITTLE(k + 12);
70 x->input[8] = U8TO32_LITTLE(k + 0);
71 x->input[9] = U8TO32_LITTLE(k + 4);
72 x->input[10] = U8TO32_LITTLE(k + 8);
73 x->input[11] = U8TO32_LITTLE(k + 12);
74 x->input[0] = U8TO32_LITTLE(constants + 0);
75 x->input[
[all...]
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dcrypt_blowfish.h25 const char *input, int size, char *output, int output_size);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectGUI.cpp32 File &input = debugger.GetInputFile(); local
34 if (input.GetStream() && output.GetStream() && input.GetIsRealTerminal() &&
35 input.GetIsInteractive()) {
/freebsd-11-stable/tests/sys/kern/
H A Dlibkern_crc32.c104 const uint64_t input = 0xf408c634b3a9142; local
112 memcpy(&buf[i], &input, sizeof(input));
115 act = sse42_crc32c(~0, (const void *)&buf[i], sizeof(input));
117 act = armv8_crc32c(~0, (const void *)&buf[i], sizeof(input));
120 "crc32c(0x%jx) = 0x%08x, got 0x%08x", (uintmax_t)input,
128 const unsigned char input[] = { local
136 act = sse42_crc32c(~0, input, sizeof(input));
138 act = armv8_crc32c(~0, input, sizeo
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_xxhash.h38 unsigned int (*XXH32)(const void* input, unsigned int len,
41 XXH_errorcode (*XXH32_update)(void* state, const void* input,
/freebsd-11-stable/contrib/groff/src/preproc/pic/
H A Dpic.h69 class input { class
70 input *next;
72 input();
73 virtual ~input();
81 class file_input : public input {
96 void lex_init(input *);
/freebsd-11-stable/stand/common/
H A Dinterp_simple.c50 interp_run(const char *input) argument
55 if (parse(&argc, &argv, input)) {
88 char input[256]; /* big enough? */ local
105 while (fgetstr(input, sizeof(input), fd) >= 0) {
109 if (strncmp(input+strspn(input, " "), "\\ ", 2) == 0)
111 cp = input;
113 if (input[0] == '@') {
118 if (input[
[all...]
/freebsd-11-stable/usr.bin/dtc/
H A Dfdt.cc259 property::parse_string(text_input_buffer &input) argument
262 assert(*input == '"');
263 ++input;
266 while (char c = *input)
270 input.consume('"');
275 ++input;
282 property::parse_cells(text_input_buffer &input, int cell_size) argument
284 assert(*input == '<');
285 ++input;
287 input
370 parse_bytes(text_input_buffer &input) argument
397 parse_reference(text_input_buffer &input) argument
456 parse_define(text_input_buffer &input, define_map *defines) argument
477 property(text_input_buffer &input, string &&k, string_set &&l, bool semicolonTerminated, define_map *defines) argument
585 parse(text_input_buffer &input, string &&key, string_set &&label, bool semicolonTerminated, define_map *defines) argument
710 parse_name(text_input_buffer &input, bool &is_property, const char *error) argument
851 node(text_input_buffer &input, device_tree &tree, string &&n, std::unordered_set<string> &&l, string &&a, define_map *defines) argument
1014 parse(text_input_buffer &input, device_tree &tree, string &&name, string_set &&label, string &&address, define_map *defines) argument
1560 parse_file(text_input_buffer &input, std::vector<node_ptr> &roots, bool &read_header) argument
1776 input_buffer &input = *in; local
[all...]

Completed in 299 milliseconds

1234567891011>>