HomeSort by: relevance | last modified time | path
    Searched defs:res (Results 1 - 25 of 3379) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid32_to_bid64.c 31 UINT64 res;
44 res = (coefficient_x & 0x000fffff);
45 res *= 1000000000;
46 res |= ((((UINT64) coefficient_x) << 32) & 0xfc00000000000000ull);
48 BID_RETURN (res); variable
52 res =
58 BID_RETURN (res); variable
81 UINT32 res;
96 res = (coefficient_x & 0x0003ffffffffffffull);
97 res /= 1000000000ull
    [all...]
_df_to_dd.c 30 union decimal64 res; local
31 res.i = __binary64_to_bid64 (x);
32 return (res.d);
_df_to_sd.c 30 union decimal32 res; local
32 res.i = __binary64_to_bid32 (x);
33 return (res.d);
_df_to_td.c 30 union decimal128 res; local
31 res.i = __binary64_to_bid128 (x);
32 return (res.d);
_di_to_dd.c 30 union decimal64 res; local
32 res.i = __bid64_from_int64 (x);
33 return (res.d);
_di_to_td.c 30 union decimal128 res; local
32 res.i = __bid128_from_int64 (x);
33 return (res.d);
_sf_to_dd.c 30 union decimal64 res; local
31 res.i = __binary32_to_bid64 (x);
32 return (res.d);
_sf_to_sd.c 30 union decimal32 res; local
31 res.i = __binary32_to_bid32 (x);
32 return (res.d);
_sf_to_td.c 30 union decimal128 res; local
31 res.i = __binary32_to_bid128 (x);
32 return (res.d);
_si_to_dd.c 30 union decimal64 res; local
32 res.i = __bid64_from_int32 (x);
33 return (res.d);
_si_to_td.c 30 union decimal128 res; local
32 res.i = __bid128_from_int32 (x);
33 return (res.d);
_udi_to_dd.c 30 union decimal64 res; local
32 res.i = __bid64_from_uint64 (x);
33 return (res.d);
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid32_to_bid64.c 31 UINT64 res;
44 res = (coefficient_x & 0x000fffff);
45 res *= 1000000000;
46 res |= ((((UINT64) coefficient_x) << 32) & 0xfc00000000000000ull);
48 BID_RETURN (res); variable
52 res =
58 BID_RETURN (res); variable
81 UINT32 res;
96 res = (coefficient_x & 0x0003ffffffffffffull);
97 res /= 1000000000ull
    [all...]
  /src/lib/libc/uuid/
uuid_compare.c 53 int res; local
67 res = (int)((int64_t)a->time_low - (int64_t)b->time_low);
68 if (res)
69 return ((res < 0) ? -1 : 1);
70 res = (int)a->time_mid - (int)b->time_mid;
71 if (res)
72 return ((res < 0) ? -1 : 1);
73 res = (int)a->time_hi_and_version - (int)b->time_hi_and_version;
74 if (res)
75 return ((res < 0) ? -1 : 1)
    [all...]
  /src/lib/librefuse/refuse/
legacy.c 44 int res = fuse_invalidate_path(fuse, path); local
46 switch (res) {
52 return res;
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_2expt.c 28 int res; local
34 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) {
35 return res;
bn_mp_abs.c 27 int res; local
31 if ((res = mp_copy (a, b)) != MP_OKAY) {
32 return res;
bn_mp_find_prime.c 13 int res = MP_NO; local
24 if (mp_prime_is_prime(a, t, &res) != 0) {
25 res = MP_VAL;
29 if (res == MP_NO) {
34 } while (res != MP_YES);
36 return res;
bn_mp_init_copy.c 23 int res; local
25 if ((res = mp_init (a)) != MP_OKAY) {
26 return res;
bn_mp_neg.c 23 int res; local
25 if ((res = mp_copy (a, b)) != MP_OKAY) {
26 return res;
bn_mp_read_signed_bin.c 23 int res; local
26 if ((res = mp_read_unsigned_bin (a, b + 1, c - 1)) != MP_OKAY) {
27 return res;
bn_mp_read_unsigned_bin.c 23 int res; local
27 if ((res = mp_grow(a, 2)) != MP_OKAY) {
28 return res;
37 if ((res = mp_mul_2d (a, 8, a)) != MP_OKAY) {
38 return res;
bn_mp_reduce_setup.c 25 int res; local
27 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) {
28 return res;
bn_mp_sqr.c 24 int res; local
29 res = mp_toom_sqr(a, b);
35 res = mp_karatsuba_sqr (a, b);
44 res = fast_s_mp_sqr (a, b);
48 res = s_mp_sqr (a, b);
50 res = MP_VAL;
54 return res;
bn_mp_to_signed_bin.c 23 int res; local
25 if ((res = mp_to_unsigned_bin (a, b + 1)) != MP_OKAY) {
26 return res;

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>