Searched refs:input (Results 1 - 25 of 707) sorted by relevance

1234567891011>>

/freebsd-current/usr.sbin/praudit/tests/
H A DMakefile9 input/trail \
10 input/corrupted \
11 input/del_comma \
12 input/del_underscore \
13 input/no_args \
14 input/numeric_form \
15 input/raw_form \
16 input/same_line \
17 input/short_form \
18 input/xml_for
[all...]
/freebsd-current/contrib/dialog/samples/
H A Dsetup-edit5 input=`tempfile 2>/dev/null` || input=/tmp/input$$
7 trap "rm -f $input $output" $SIG_NONE $SIG_HUP $SIG_INT $SIG_QUIT $SIG_TERM
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DVersionTuple.cpp41 static bool parseInt(StringRef &input, unsigned &value) { argument
43 if (input.empty())
46 char next = input[0];
47 input = input.substr(1);
52 while (!input.empty()) {
53 next = input[0];
56 input = input.substr(1);
63 bool VersionTuple::tryParse(StringRef input) { argument
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.tolower.d32 input[i] = "ahi";
35 input[i] = "MaHi!";
38 input[i] = " Nase-5";
41 input[i] = "!@#$%";
48 /input[i] != NULL && (this->out = tolower(input[i])) != expected[i]/
51 input[i], expected[i], this->out);
56 /input[i] != NULL/
59 input[i], expected[i]);
63 /input[
[all...]
H A Dtst.toupper.d32 input[i] = "ahi";
35 input[i] = "MaHi!";
38 input[i] = " dace-9";
41 input[i] = "!@#$%";
48 /input[i] != NULL && (this->out = toupper(input[i])) != expected[i]/
51 input[i], expected[i], this->out);
56 /input[i] != NULL/
59 input[i], expected[i]);
63 /input[
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfixtfti.c17 __int128_t __fixtfti(long double input) { argument
20 if (crt_isnan(input)) {
30 if (input < 0.0) {
31 __uint128_t result = (__uint128_t)(-input);
35 // Otherwise, use unsigned conversion from the input value.
36 __uint128_t result = (__uint128_t)input;
/freebsd-current/contrib/mandoc/
H A Dtest-strptime.c7 const char input[] = "2014-01-04"; local
8 return ! (strptime(input, "%Y-%m-%d", &tm) == input + 10 &&
/freebsd-current/sys/crypto/chacha20/
H A D_chacha.h11 u_int input[16]; member in struct:chacha_ctx
/freebsd-current/sys/dev/sfxge/common/
H A Defx_hash.c111 /* Produce a 32-bit hash from 32-bit aligned input */
114 __in_ecount(count) uint32_t const *input,
126 /* Handle all but the last three dwords of the input */
128 a += input[0];
129 b += input[1];
130 c += input[2];
134 input += 3;
140 c += input[2];
143 b += input[1];
146 a += input[
[all...]
/freebsd-current/contrib/ldns/compat/
H A Db64_ntop.c60 The encoding process represents 24-bit groups of input bits as output
62 24-bit input group is formed by concatenating 3 8-bit input groups.
93 always completed at the end of a quantity. When fewer than 24 input
94 bits are available in an input group, zero bits are added (on the
98 Since all base64 input is an integral number of octets, only the
102 (1) the final quantum of encoding input is an integral
106 (2) the final quantum of encoding input is exactly 8 bits;
109 (3) the final quantum of encoding input is exactly 16 bits;
117 uint8_t input[ local
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dlshrdi3.c21 udwords input; local
23 input.all = a;
26 result.s.low = input.s.high >> (b - bits_in_word);
30 result.s.high = input.s.high >> b;
31 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dlshrti3.c23 utwords input; local
25 input.all = a;
28 result.s.low = input.s.high >> (b - bits_in_dword);
32 result.s.high = input.s.high >> b;
33 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dashlti3.c23 twords input; local
25 input.all = a;
28 result.s.high = input.s.low << (b - bits_in_dword);
32 result.s.low = input.s.low << b;
34 ((du_int)input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dashrdi3.c21 dwords input; local
23 input.all = a;
25 // result.s.high = input.s.high < 0 ? -1 : 0
26 result.s.high = input.s.high >> (bits_in_word - 1);
27 result.s.low = input.s.high >> (b - bits_in_word);
31 result.s.high = input.s.high >> b;
33 ((su_int)input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c23 twords input; local
25 input.all = a;
27 // result.s.high = input.s.high < 0 ? -1 : 0
28 result.s.high = input.s.high >> (bits_in_dword - 1);
29 result.s.low = input.s.high >> (b - bits_in_dword);
33 result.s.high = input.s.high >> b;
35 ((du_int)input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dashldi3.c21 dwords input; local
23 input.all = a;
26 result.s.high = input.s.low << (b - bits_in_word);
30 result.s.low = input.s.low << b;
32 ((su_int)input.s.high << b) | (input.s.low >> (bits_in_word - b));
/freebsd-current/contrib/netbsd-tests/usr.bin/unifdef/
H A Dt_basic.sh51 printf '#ifdef foo\n#endif\n' >input
52 atf_check -o file:input unifdef -Ubar input
59 printf '#ifdef foo\n#endif' >input
60 atf_check -o file:input unifdef -Ubar input
/freebsd-current/contrib/byacc/test/
H A Drun_make.sh46 for input in ${REF_DIR}/*.c
48 case $input in #(vi
55 test -f "$input" || continue
57 run_make "$input"
60 case $input in #(vi
68 run_make "$input" DEFINES="$DEFS"
75 for input in ${TEST_DIR}/*.y
77 test -f "$input" || continue
78 case $input in
98 echo "... testing $input"
[all...]
/freebsd-current/usr.bin/cut/tests/
H A Dcut2_test.sh35 cat >input<<EOF
41 atf_check -o inline:'a\nb\nc\n' cut -d, -f 1 -s < input
42 atf_check -o inline:'d\n\n\n' cut -d, -f 4 -s < input
43 atf_check -o inline:'a,b,\nb,\n\n' cut -d 'c' -f 1 -s < input
44 atf_check -o empty cut -d'!' -f 1 -s < input
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbase64.c77 The encoding process represents 24-bit groups of input bits as output
79 24-bit input group is formed by concatenating 3 8-bit input groups.
110 always completed at the end of a quantity. When fewer than 24 input
111 bits are available in an input group, zero bits are added (on the
115 Since all base64 input is an integral number of octets, only the
119 (1) the final quantum of encoding input is an integral
123 (2) the final quantum of encoding input is exactly 8 bits;
126 (3) the final quantum of encoding input is exactly 16 bits;
136 u_char input[ local
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libc/gen/
H A Dt_basedirname.c19 const char *input; member in struct:__anon5199
53 const char *input; member in struct:__anon5200
105 if (test_basename_table[i].input != NULL) {
106 if (strlen(test_basename_table[i].input) >=
109 strcpy(testbuf, test_basename_table[i].input);
116 * basename(3) is allowed to modify the input buffer.
124 if (test_basename_table[i].input != NULL &&
125 strcmp(test_basename_table[i].input, testbuf) != 0) {
128 test_basename_table[i].input);
137 test_basename_table[i].input
[all...]
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/
H A Dsalsa20_xmm6int-avx2.c32 uint32_t input[16]; member in struct:salsa_ctx
42 ctx->input[TR[1]] = LOAD32_LE(k + 0);
43 ctx->input[TR[2]] = LOAD32_LE(k + 4);
44 ctx->input[TR[3]] = LOAD32_LE(k + 8);
45 ctx->input[TR[4]] = LOAD32_LE(k + 12);
46 ctx->input[TR[11]] = LOAD32_LE(k + 16);
47 ctx->input[TR[12]] = LOAD32_LE(k + 20);
48 ctx->input[TR[13]] = LOAD32_LE(k + 24);
49 ctx->input[TR[14]] = LOAD32_LE(k + 28);
50 ctx->input[T
[all...]
H A Dsalsa20_xmm6int-sse2.c24 uint32_t input[16]; member in struct:salsa_ctx
34 ctx->input[TR[1]] = LOAD32_LE(k + 0);
35 ctx->input[TR[2]] = LOAD32_LE(k + 4);
36 ctx->input[TR[3]] = LOAD32_LE(k + 8);
37 ctx->input[TR[4]] = LOAD32_LE(k + 12);
38 ctx->input[TR[11]] = LOAD32_LE(k + 16);
39 ctx->input[TR[12]] = LOAD32_LE(k + 20);
40 ctx->input[TR[13]] = LOAD32_LE(k + 24);
41 ctx->input[TR[14]] = LOAD32_LE(k + 28);
42 ctx->input[T
[all...]
/freebsd-current/sys/dev/uart/
H A Duart_cpu_powerpc.c57 phandle_t input; local
61 input = OF_finddevice(buf);
62 if (input == -1)
68 if (OF_finddevice(buf) != input)
72 *result = input;
113 phandle_t input, opts, chosen; local
122 error = ofw_get_uart_console(chosen, &input,
125 error = ofw_get_uart_console(chosen, &input,
128 error = ofw_get_console_phandle_path(chosen, &input,
131 error = ofw_get_uart_console(chosen, &input,
[all...]
/freebsd-current/contrib/kyua/utils/logging/
H A Dmacros_test.cpp52 std::ifstream input("test.log");
53 ATF_REQUIRE(input);
56 ATF_REQUIRE(std::getline(input, line).good());
68 std::ifstream input("test.log");
69 ATF_REQUIRE(input);
72 ATF_REQUIRE(std::getline(input, line).good());
84 std::ifstream input("test.log");
85 ATF_REQUIRE(input);
88 ATF_REQUIRE(std::getline(input, line).good());
100 std::ifstream input("tes
[all...]

Completed in 178 milliseconds

1234567891011>>