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

1234567891011>>

/freebsd-9.3-release/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-9.3-release/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-9.3-release/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-9.3-release/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-9.3-release/contrib/ntp/tests/libntp/
H A Dnumtohost.c28 const u_int32 input = 127*256*256*256 + 1*256 + 1; // 127.0.1.1 local
30 TEST_ASSERT_EQUAL_STRING("127.0.1.1", numtohost(htonl(input)));
H A Dcalyearstart.c28 const u_int32 input = 3486372600UL; // 2010-06-24 12:50:00. local
31 TEST_ASSERT_EQUAL(expected, calyearstart(input, &nowtime));
32 TEST_ASSERT_EQUAL(expected, calyearstart(input, NULL));
36 const u_int32 input = 3549528000UL; // 2012-06-24 12:00:00 local
39 TEST_ASSERT_EQUAL(expected, calyearstart(input, &nowtime));
40 TEST_ASSERT_EQUAL(expected, calyearstart(input, NULL));
44 const u_int32 input = 19904UL; // 2036-02-07 12:00:00 local
47 TEST_ASSERT_EQUAL(expected, calyearstart(input, &nowtime));
48 TEST_ASSERT_EQUAL(expected, calyearstart(input, NULL));
H A Dcaltontp.c13 struct calendar input = {2010, 0, 6, 24, 12, 50, 0}; local
17 TEST_ASSERT_EQUAL_UINT(expected, caltontp(&input));
24 struct calendar input = {2010, 175, 0, 0, 12, 50, 0}; local
28 TEST_ASSERT_EQUAL_UINT(expected, caltontp(&input));
48 struct calendar input = {2036, 0, 2, 7, 6, 28, 16}; local
52 TEST_ASSERT_EQUAL_UINT(expected, caltontp(&input));
H A Dnumtoa.c24 const u_int32 input = htonl(3221225472UL + 512UL + 1UL); // 192.0.2.1 local
26 TEST_ASSERT_EQUAL_STRING("192.0.2.1", numtoa(input));
33 const u_int32 input = htonl(hostOrder); local
35 TEST_ASSERT_EQUAL_STRING("255.255.255.0", numtoa(input));
H A Dsocktoa.c29 sockaddr_u input = CreateSockaddr4("192.0.2.10", 123); local
31 TEST_ASSERT_EQUAL_STRING("192.0.2.10", socktoa(&input));
32 TEST_ASSERT_EQUAL_STRING("192.0.2.10:123", sockporttoa(&input));
53 sockaddr_u input; local
54 memset(&input, 0, sizeof(input));
55 AF(&input) = AF_INET6;
56 SET_ADDR6N(&input, address);
57 SET_PORT(&input, 123);
59 TEST_ASSERT_EQUAL_STRING(expected, socktoa(&input));
87 sockaddr_u input; local
[all...]
H A Dtstotv.c15 const l_fp input = {{50}, 0}; /* 50.0 s */ local
19 TSTOTV(&input, &actual);
28 const l_fp input = {{50}, HALF}; /* 50.5 s */ local
32 TSTOTV(&input, &actual);
41 const l_fp input = {{50}, 3865471UL}; /* Should round to 50.0009 */ local
45 TSTOTV(&input, &actual);
H A Dtvtots.c17 struct timeval input = {500, 0}; /* 500.0 s */ local
21 TVTOTS(&input, &actual);
35 struct timeval input = {0, 500}; /* 0.0005 exact */ local
39 TVTOTS(&input, &actual);
49 const struct timeval input = {10, 500000}; /* 0.5 exact */ local
53 TVTOTS(&input, &actual);
H A Dbuftvtots.c24 const struct timeval input = {0, 0}; local
29 TEST_ASSERT_TRUE(buftvtots((const char*)(&input), &actual));
43 const struct timeval input = {5, 500000}; /* 5.5 */ local
48 TEST_ASSERT_TRUE(buftvtots((const char*)(&input), &actual));
69 const struct timeval input = {0, 1100000}; /* > 999 999 microseconds. */ local
73 TEST_ASSERT_FALSE(buftvtots((const char*)(&input), &actual));
H A Dnetof.c30 sockaddr_u input = CreateSockaddr4("172.16.2.1", NTP_PORT); local
33 sockaddr_u* actual = netof(&input);
44 sockaddr_u input = CreateSockaddr4("192.0.2.255", NTP_PORT); local
47 sockaddr_u* actual = netof(&input);
62 sockaddr_u input = CreateSockaddr4("10.20.30.40", NTP_PORT); local
65 sockaddr_u* actual = netof(&input);
91 sockaddr_u input; local
92 input.sa6.sin6_family = AF_INET6;
93 input.sa6.sin6_addr = input_address;
94 SET_PORT(&input, 300
[all...]
/freebsd-9.3-release/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-9.3-release/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-9.3-release/contrib/dialog/samples/
H A Deditbox39 cat << EOF > $input
15 --fixed-font "$@" --editbox $input 0 0 2>$output
/freebsd-9.3-release/gnu/usr.bin/groff/src/libs/libdriver/
H A DMakefile5 SRCS= input.cpp printer.cpp
/freebsd-9.3-release/sys/dev/uart/
H A Duart_cpu_powerpc.c57 phandle_t input; local
61 input = OF_finddevice(buf);
62 if (input == -1)
66 if (OF_finddevice(buf) != input)
69 *result = input;
78 phandle_t input, opts; local
89 if (ofw_get_uart_console(opts, &input, "input-device",
93 * probe input-device-1 as well
96 if (ofw_get_uart_console(opts, &input, "inpu
[all...]
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_map.c29 * ex_map -- :map[!] [input] [replacement]
50 CHAR_T *input, *p; local
58 "132|No input map entries" :
62 input = cmdp->argv[0]->bp;
74 if (input[0] == '#' && isdigit(input[1])) {
75 for (p = input + 2; isdigit(*p); ++p);
79 if (seq_set(sp, NULL, 0, input, cmdp->argv[0]->len,
84 sp->gp->scr_fmap(sp, stype, input, cmdp->argv[0]->len,
89 nofunc: if (stype == SEQ_COMMAND && input[
[all...]

Completed in 122 milliseconds

1234567891011>>