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

1234567891011>>

/freebsd-10-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-10-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-10-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-10-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
H A Deditbox39 cat << EOF > $input
15 --fixed-font "$@" --editbox $input 0 0 2>$output
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
H A DVersionTuple.cpp38 static bool parseInt(StringRef &input, unsigned &value) { argument
40 if (input.empty()) return true;
42 char next = input[0];
43 input = input.substr(1);
47 while (!input.empty()) {
48 next = input[0];
50 input = input.substr(1);
57 bool VersionTuple::tryParse(StringRef input) { argument
[all...]
/freebsd-10-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-10-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-10-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-10-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-10-stable/contrib/compiler-rt/lib/
H A Dashldi3.c27 dwords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_word);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
H A Dashlti3.c27 twords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dlshrdi3.c27 udwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dlshrti3.c27 utwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dashrdi3.c27 dwords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c27 twords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
/freebsd-10-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-10-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-10-stable/contrib/byacc/test/
H A Drun_make.sh43 for input in ${REF_DIR}/*.c
45 case $input in #(vi
51 test -f "$input" || continue
53 run_make "$input"
56 case $input in #(vi
64 run_make "$input" DEFINES="$DEFS"
71 for input in ${TEST_DIR}/*.y
73 test -f "$input" || continue
74 case $input in
88 echo "... testing $input"
[all...]
/freebsd-10-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-10-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_basedirname.c19 const char *input; member in struct:__anon3959
53 const char *input; member in struct:__anon3960
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-10-stable/contrib/netbsd-tests/lib/libcurses/tests/
H A Dtimeout6 input "a"
9 input "b"
13 # drain input....
18 input "\eOA"
/freebsd-10-stable/gnu/usr.bin/groff/src/libs/libdriver/
H A DMakefile5 SRCS= input.cpp printer.cpp
/freebsd-10-stable/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
126 error = ofw_get_uart_console(chosen, &input,
129 error = ofw_get_uart_console(chosen, &input,
132 error = ofw_get_console_phandle_path(chosen, &input,
135 error = ofw_get_uart_console(chosen, &input,
[all...]

Completed in 239 milliseconds

1234567891011>>