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

1234567891011>>

/freebsd-11-stable/contrib/gcc/
H A Dsort-protos5 input=$1
7 sed 's/\(.*[ \*]\)\([a-zA-Z0-9_][a-zA-Z0-9_]*\)[ ]*\(([^\*].*\)$/\2%\1%\3/' $input | sort -u | awk -F% '{printf "%-30.30s%s%s\n", $2, $1, $3}' > tmp.$input
9 mv -f tmp.$input $input
/freebsd-11-stable/usr.sbin/praudit/tests/
H A DMakefile10 input/trail \
11 input/corrupted \
12 input/del_comma \
13 input/del_underscore \
14 input/no_args \
15 input/numeric_form \
16 input/raw_form \
17 input/same_line \
18 input/short_form \
19 input/xml_for
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DVersionTuple.cpp38 static bool parseInt(StringRef &input, unsigned &value) { argument
40 if (input.empty())
43 char next = input[0];
44 input = input.substr(1);
49 while (!input.empty()) {
50 next = input[0];
53 input = input.substr(1);
60 bool VersionTuple::tryParse(StringRef input) { argument
[all...]
/freebsd-11-stable/contrib/top/
H A Dgetans38 read input
41 tmp=`echo $input | tr -d 0123456789.`
49 tmp=`echo $input | tr -d 0123456789`
57 if [ "x$input" != "x-1" ]; then
58 tmp=`echo $input | tr -d 0123456789`
67 if [ -z "$input" ]; then
68 input=${DFLT}
70 if [ ! -f "$input" -a ! -d "$input" ]; then
71 echo "The file $input doe
[all...]
/freebsd-11-stable/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_TRAP $SIG_TERM
/freebsd-11-stable/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-11-stable/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-11-stable/contrib/mdocml/
H A Dtest-strptime.c11 const char input[] = "2014-01-04"; local
12 return ! (strptime(input, "%Y-%m-%d", &tm) == input + 10 &&
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dadler32.c70 const unsigned char *input = (const unsigned char *)data; local
78 for (; len >= 8; len -= 8, input += 8)
80 s1 += input[0]; s2 += s1;
81 s1 += input[1]; s2 += s1;
82 s1 += input[2]; s2 += s1;
83 s1 += input[3]; s2 += s1;
84 s1 += input[4]; s2 += s1;
85 s1 += input[5]; s2 += s1;
86 s1 += input[6]; s2 += s1;
87 s1 += input[
[all...]
/freebsd-11-stable/contrib/groff/src/libs/libdriver/
H A DMakefile.sub3 input.$(OBJEXT) \
6 $(srcdir)/input.cpp \
/freebsd-11-stable/sys/dev/sfxge/common/
H A Defx_hash.c114 /* Produce a 32-bit hash from 32-bit aligned input */
117 __in_ecount(count) uint32_t const *input,
129 /* Handle all but the last three dwords of the input */
131 a += input[0];
132 b += input[1];
133 c += input[2];
137 input += 3;
143 c += input[2];
146 b += input[1];
149 a += input[
[all...]
/freebsd-11-stable/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-11-stable/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
55 printf '#ifdef foo\n#endif' >input
56 atf_check -o file:input unifdef -Ubar input
/freebsd-11-stable/contrib/gdb/
H A Dylwrap23 # * INPUT is the input file
38 # The input.
39 input="$1"
41 case "$input" in
49 input="`pwd`/$input"
53 # We don't want to use the absolute path if the input in the current
55 input_base=`echo $input | sed -e 's|.*/||'`
56 if test -f $input_base && cmp $input_base $input >/dev/null 2>&1; then
57 input
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
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;
33 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - 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 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;
32 result.s.low = (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;
34 result.s.low = (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;
31 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
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);
/freebsd-11-stable/contrib/byacc/test/
H A Drun_make.sh43 for input in ${REF_DIR}/*.c
45 case $input in #(vi
52 test -f "$input" || continue
54 run_make "$input"
57 case $input in #(vi
65 run_make "$input" DEFINES="$DEFS"
72 for input in ${TEST_DIR}/*.y
74 test -f "$input" || continue
75 case $input in
95 echo "... testing $input"
[all...]
/freebsd-11-stable/usr.bin/cut/tests/
H A Dcut2_test.sh36 cat >input<<EOF
42 atf_check -o inline:'a\nb\nc\n' cut -d, -f 1 -s < input
43 atf_check -o inline:'d\n\n\n' cut -d, -f 4 -s < input
44 atf_check -o inline:'a,b,\nb,\n\n' cut -d 'c' -f 1 -s < input
45 atf_check -o empty cut -d'!' -f 1 -s < input
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_basedirname.c19 const char *input; member in struct:__anon4698
53 const char *input; member in struct:__anon4699
105 if (test_basename_table[i].input != NULL) {
106 if (strlen(test_basename_table[i].input) >=
109 strcpy(testbuf, test_basename_table[i].input);
115 * basename(3) is allowed to modify the input buffer.
123 if (test_basename_table[i].input != NULL &&
124 strcmp(test_basename_table[i].input, testbuf) != 0) {
127 test_basename_table[i].input);
135 test_basename_table[i].input
[all...]
/freebsd-11-stable/sys/dev/uart/
H A Duart_cpu_powerpc.c58 phandle_t input; local
62 input = OF_finddevice(buf);
63 if (input == -1)
69 if (OF_finddevice(buf) != input)
73 *result = input;
114 phandle_t input, opts, chosen; local
123 error = ofw_get_uart_console(chosen, &input,
126 error = ofw_get_uart_console(chosen, &input,
129 error = ofw_get_console_phandle_path(chosen, &input,
132 error = ofw_get_uart_console(chosen, &input,
[all...]

Completed in 127 milliseconds

1234567891011>>