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

1234567891011>>

/freebsd-10.1-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-10.1-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-10.1-release/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.1-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-10.1-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-10.1-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));
/freebsd-10.1-release/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.1-release/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.1-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-10.1-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-10.1-release/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...]

Completed in 205 milliseconds

1234567891011>>