Searched refs:res (Results 176 - 200 of 2094) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_toom_sqr.c25 int res, B; local
28 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
29 return res;
36 if ((res = mp_mod_2d(a, DIGIT_BIT * B, &a0)) != MP_OKAY) {
40 if ((res = mp_copy(a, &a1)) != MP_OKAY) {
46 if ((res = mp_copy(a, &a2)) != MP_OKAY) {
52 if ((res = mp_sqr(&a0, &w0)) != MP_OKAY) {
57 if ((res = mp_sqr(&a2, &w4)) != MP_OKAY) {
62 if ((res = mp_mul_2(&a0, &tmp1)) != MP_OKAY) {
65 if ((res
[all...]
H A Dbn_mp_2expt.c28 int res; local
34 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) {
35 return res;
H A Dbn_mp_abs.c27 int res; local
31 if ((res = mp_copy (a, b)) != MP_OKAY) {
32 return res;
H A Dbn_mp_neg.c23 int res; local
25 if ((res = mp_copy (a, b)) != MP_OKAY) {
26 return res;
H A Dbn_mp_prime_is_divisible.c28 mp_digit res; local
35 if ((err = mp_mod_d (a, ltm_prime_tab[ix], &res)) != MP_OKAY) {
40 if (res == 0) {
H A Dbn_mp_read_signed_bin.c23 int res; local
26 if ((res = mp_read_unsigned_bin (a, b + 1, c - 1)) != MP_OKAY) {
27 return res;
H A Dbn_mp_reduce_setup.c25 int res; local
27 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) {
28 return res;
H A Dbn_mp_set_int.c23 int x, res; local
30 if ((res = mp_mul_2d (a, 4, a)) != MP_OKAY) {
31 return res;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgcc/config/libbid/
H A Dbid64_to_int32.c42 int res; local
61 res = 0x80000000;
62 BID_RETURN (res);
82 res = 0x00000000;
83 BID_RETURN (res);
117 res = 0x80000000;
118 BID_RETURN (res);
138 res = 0x80000000;
139 BID_RETURN (res);
153 res
301 int res; local
600 int res; local
851 int res; local
1108 int res; local
1359 int res; local
1616 int res; local
1838 int res; local
2086 int res; local
2324 int res; local
[all...]
H A Dbid128_compare.c28 int res; variable
45 res = 0;
46 BID_RETURN (res); variable
52 res = 1;
53 BID_RETURN (res); variable
58 res = (((x.w[1] ^ y.w[1]) & MASK_SIGN) != MASK_SIGN);
59 BID_RETURN (res); variable
61 res = 0;
62 BID_RETURN (res); variable
66 res
67 BID_RETURN (res); variable
119 BID_RETURN (res); variable
122 BID_RETURN (res); variable
128 BID_RETURN (res); variable
140 BID_RETURN (res); variable
151 BID_RETURN (res); variable
162 BID_RETURN (res); variable
[all...]
H A D_div_dd.c30 union decimal64 ux, uy, res; local
34 res.i = __bid64_div (ux.i, uy.i);
35 return (res.d);
H A D_div_td.c30 union decimal128 ux, uy, res; local
34 res.i = __bid128_div (ux.i, uy.i);
35 return (res.d);
H A D_gt_dd.c30 CMPtype res; local
35 res = __bid64_quiet_greater (ux.i, uy.i);
36 return (res);
H A D_gt_td.c30 CMPtype res; local
35 res = __bid128_quiet_greater (ux.i, uy.i);
36 return (res);
H A D_lt_dd.c30 CMPtype res; local
35 res = -__bid64_quiet_less (ux.i, uy.i);
36 return (res);
H A D_lt_td.c30 CMPtype res; local
35 res = -__bid128_quiet_less (ux.i, uy.i);
36 return (res);
H A D_mul_dd.c30 union decimal64 ux, uy, res; local
34 res.i = __bid64_mul (ux.i, uy.i);
35 return (res.d);
H A D_mul_td.c30 union decimal128 ux, uy, res; local
34 res.i = __bid128_mul (ux.i, uy.i);
35 return (res.d);
H A D_ne_dd.c30 CMPtype res; local
35 res = __bid64_quiet_not_equal (ux.i, uy.i);
36 return (res);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/26_numerics/accumulate/
H A D1.cc32 int res = std::accumulate(A, A + NA, 11); local
33 VERIFY( res == 66 );
44 int res = std::accumulate(B, B + NB, 100); local
45 VERIFY( res == 106 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/26_numerics/inner_product/
H A D1.cc37 int res = std::inner_product(A1, A1 + NA, A2, 31); local
38 VERIFY( res == 983 );
46 int res = std::inner_product(B1, B1 + NB, B2, 100); local
47 VERIFY( res == 102 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/
H A Dudivmodsi4.c28 unsigned long res = 0; local
40 res |= bit;
46 return res;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A Dva-arg-11.c9 int i, res; local
16 res = va_arg (va, int);
20 return res;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/guality/
H A Dpr41447-1.c14 int res; local
24 res = tmp - tmp2 + 1;
25 return res;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/x86_64/abi/
H A Dtest_complex_returning.c28 __complex__ float res; local
30 __real__ res = (2.0 * __real__ x); local
31 __imag__ res = (2.0 * __imag__ x); local
33 return res;
39 __complex__ double res; local
41 __real__ res = (2.0 * __real__ x); local
42 __imag__ res = (2.0 * __imag__ x); local
44 return res;
50 __complex__ long double res; local
52 __real__ res local
53 __imag__ res = (2.0 * __imag__ x); local
[all...]

Completed in 215 milliseconds

1234567891011>>