Searched refs:result (Results 51 - 75 of 1983) sorted by relevance

1234567891011>>

/haiku-buildtools/legacy/gcc/libio/stdio/
H A Dfeof.c33 int result; local
36 result = _IO_feof_unlocked (fp);
38 return result;
H A Dferror.c33 int result; local
36 result = _IO_ferror_unlocked (fp);
38 return result;
H A Dfgetc.c33 int result; local
37 result = _IO_getc_unlocked (fp);
39 return result;
H A Dgetchar.c34 int result; local
37 result = _IO_getc_unlocked (stdin);
39 return result;
H A Dputchar.c28 int result; local
32 result = _IO_putc_unlocked (c, _IO_stdout);
34 return result;
/haiku-buildtools/binutils/libiberty/
H A Dtimeval-utils.c44 struct timeval *@var{b}, struct timeval *@var{result})
46 Adds @var{a} to @var{b} and stores the result in @var{result}.
53 timeval_add (struct timeval *result, argument
56 result->tv_sec = a->tv_sec + b->tv_sec;
57 result->tv_usec = a->tv_usec + b->tv_usec;
58 if (result->tv_usec >= 1000000)
60 ++result->tv_sec;
61 result->tv_usec -= 1000000;
68 struct timeval *@var{b}, struct timeval *@var{result})
77 timeval_sub(struct timeval *result, const struct timeval *a, const struct timeval *b) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/overload/
H A Dref1.C16 int result = 0; local
18 S s ((0,S (result)));
20 return S (result);
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900212_02.C20 int result; variable
24 result = (p0 - p1); // { dg-error "" }
25 result = (fp0 - fp1); // { dg-error "" }
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstruct-ini-3.c4 } result = {1, 1, 7, 7, 3, 1, 1}; variable in typeref:struct:__anon1843
8 if ((result.f3 & ~7) != 0 || (result.f4 & ~7) != 0)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr22356-1.c7 GFC_COMPLEX_4 result; local
9 result *= *src;
10 *dest = result;
H A Dsetjmp-1.c19 int result; local
30 if (a == b) result = EQ;
31 else if (a > b) result = LT;
32 else if (a < b) result = GT;
33 else result = 0;
35 return result;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dpr43597.c11 int result = 0; local
16 result = 1;
22 return result;
/haiku-buildtools/gcc/gmp/mpz/
H A Dsizeinbase.c29 size_t result; variable
30 MPN_SIZEINBASE (result, PTR(x), ABSIZ(x), base);
31 return result;
/haiku-buildtools/gcc/libiberty/
H A Dtimeval-utils.c44 struct timeval *@var{b}, struct timeval *@var{result})
46 Adds @var{a} to @var{b} and stores the result in @var{result}.
53 timeval_add (struct timeval *result, argument
56 result->tv_sec = a->tv_sec + b->tv_sec;
57 result->tv_usec = a->tv_usec + b->tv_usec;
58 if (result->tv_usec >= 1000000)
60 ++result->tv_sec;
61 result->tv_usec -= 1000000;
68 struct timeval *@var{b}, struct timeval *@var{result})
77 timeval_sub(struct timeval *result, const struct timeval *a, const struct timeval *b) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dpublic_private_module_7.f9014 pure function get_key_len() result(n)
17 pure function other() result(n)
21 function get_key() result(key)
H A Dwarn_function_without_result_2.f9010 integer pure function g() result(h) ! { dg-warning "Return value 'h' of function 'g' declared at .1. not set" }
15 integer pure function j() result(k)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/sh/
H A Dpr59278.c7 struct result struct
12 struct result
15 struct result r;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-anon1.C5 static int result; local
14 result = b.y; // { dg-error "anonymous union" }
16 if (result == 1) return 0;
/haiku-buildtools/gcc/
H A Dlibtool-ldflags33 result=
53 result="$result -Xcompiler"
75 # will result in the same number of arguments being passed to
103 result="$result $quoted_arg"
107 echo "$result"
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.oacc-fortran/
H A Dreduction-1.f909 integer :: i, vresult, result variable in program:reduction_1
17 result = 0
23 !$acc loop reduction(+:result)
25 result = result + array(i)
34 if (result.ne.vresult) call abort
36 result = 0
42 !$acc loop reduction(*:result)
44 result = result * arra
[all...]
H A Dreduction-2.f9011 real :: vresult, result variable in program:reduction_2
19 result = 0
25 !$acc loop reduction(+:result)
27 result = result + array(i)
36 if (abs (result - vresult) .ge. e) call abort
38 result = 1
44 !$acc loop reduction(*:result)
46 result = result * arra
[all...]
H A Dreduction-3.f9011 double precision :: vresult, result variable in program:reduction_3
19 result = 0
25 !$acc loop reduction(+:result)
27 result = result + array(i)
36 if (abs (result - vresult) .ge. e) call abort
38 result = 1
44 !$acc loop reduction(*:result)
46 result = result * arra
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr30590.C22 struct test result; local
23 result.type = 0;
29 result = candidate;
32 return result;
38 struct test result = test (); local
39 return result.type;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20071107-1.c8 unsigned int result; local
9 result = settings_install_property_parser();
12 if (result == PROP_DOUBLE_CLICK_TIME) _g_boolean_var_ = 1;
18 result = settings_install_property_parser();
21 if (result == PROP_DOUBLE_CLICK_DISTANCE) _g_boolean_var_ = 1;
27 result = settings_install_property_parser();
30 if (result == PROP_CURSOR_BLINK) _g_boolean_var_ = 1;
36 result = settings_install_property_parser();
39 if (result == PROP_CURSOR_BLINK_TIME) _g_boolean_var_ = 1;
45 result
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/aarch64/
H A Dmadd_after_asm_1.c7 double result; local
9 : "=w" (result)

Completed in 208 milliseconds

1234567891011>>