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

1234567891011>>

/freebsd-10.0-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.0-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.0-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
H A Dmenubox1217 $CUT >$input <<-EOF
25 cat $input | sed -e 's/^/"/' -e 's/:/" "/g' -e 's/$/"/' >$output
26 cat $output >$input
38 --file $input 2> $output
/freebsd-10.0-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.0-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.0-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.0-release/contrib/byacc/test/
H A Drun_make.sh21 for input in ${TEST_DIR}/*.c
23 test -f "$input" || continue
25 obj=`basename "$input" .c`.o
27 $MY_MAKE $obj C_FILES=$input
31 case $input in #(vi
39 $MY_MAKE $obj C_FILES=$input DEFINES="$DEFS"
47 for input in ${TEST_DIR}/*.y
49 test -f "$input" || continue
55 echo "... testing $input"
58 case $input i
[all...]
/freebsd-10.0-release/contrib/ldns/compat/
H A Db64_ntop.c80 The encoding process represents 24-bit groups of input bits as output
82 24-bit input group is formed by concatenating 3 8-bit input groups.
113 always completed at the end of a quantity. When fewer than 24 input
114 bits are available in an input group, zero bits are added (on the
118 Since all base64 input is an integral number of octets, only the
122 (1) the final quantum of encoding input is an integral
126 (2) the final quantum of encoding input is exactly 8 bits;
129 (3) the final quantum of encoding input is exactly 16 bits;
137 uint8_t input[ local
[all...]
H A Db32_ntop.c88 The encoding process represents 40-bit groups of input bits as output
90 40-bit input group is formed by concatenating 5 8bit input groups.
120 always completed at the end of a body. When fewer than 40 input bits
121 are available in an input group, zero bits are added (on the right)
124 input is an integral number of octets, only the following cases can
127 (1) the final quantum of encoding input is an integral multiple of 40
131 (2) the final quantum of encoding input is exactly 8 bits; here, the
135 (3) the final quantum of encoding input is exactly 16 bits; here, the
139 (4) the final quantum of encoding input i
180 uint8_t input[5]; local
[all...]
/freebsd-10.0-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.0-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.0-release/contrib/atf/atf-report/
H A Dreader_test.cpp125 const char* input = local
141 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
147 const char* input = local
171 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
177 const char* input = local
249 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
255 const char* input = local
339 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
345 const char* input = local
395 do_parser_test< tps_reader >(input, exp_call
401 const char* input = local
462 const char* input = local
483 const char* input = local
504 const char* input = local
525 const char* input = local
548 const char* input = local
615 const char* input = local
686 const char* input = local
732 const char* input = local
758 const char* input = local
786 const char* input = local
807 const char* input = local
828 const char* input = local
849 const char* input = local
871 const char* input = local
893 const char* input = local
918 const char* input = local
941 const char* input = local
[all...]
/freebsd-10.0-release/gnu/usr.bin/groff/src/libs/libdriver/
H A DMakefile5 SRCS= input.cpp printer.cpp
/freebsd-10.0-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-10.0-release/contrib/nvi/ex/
H A Dex_map.c30 * ex_map -- :map[!] [input] [replacement]
49 CHAR_T *input, *p; local
57 "132|No input map entries" :
61 input = cmdp->argv[0]->bp;
73 if (input[0] == '#' && isdigit(input[1])) {
74 for (p = input + 2; isdigit(*p); ++p);
78 if (seq_set(sp, NULL, 0, input, cmdp->argv[0]->len,
83 sp->gp->scr_fmap(sp, stype, input, cmdp->argv[0]->len,
88 nofunc: if (stype == SEQ_COMMAND && input[
[all...]
/freebsd-10.0-release/usr.sbin/bsdinstall/partedit/
H A Dscripted.c146 int parse_disk_config(char *input) argument
151 while (input != NULL && *input != 0) {
152 if (isspace(*input)) {
153 input++;
157 switch(*input) {
159 input++;
160 partconfig = strchr(input, '}');
163 "string: %s\n", input);
168 partconfig = input;
198 char inputbuf[len], *input = inputbuf; local
[all...]
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dxmemdup.c7 @deftypefn Replacement void* xmemdup (void *@var{input}, size_t @var{copy_size}, size_t @var{alloc_size})
10 are allocated, then @var{copy_size} bytes from @var{input} are copied into
34 xmemdup (const PTR input, size_t copy_size, size_t alloc_size) argument
37 return (PTR) memcpy (output, input, copy_size);

Completed in 174 milliseconds

1234567891011>>