HomeSort by: relevance | last modified time | path
    Searched refs:BITS_PER_MP_LIMB (Results 1 - 24 of 24) sorted by relevancy

  /src/external/gpl3/gcc/dist/libquadmath/strtod/
tens_in_limb.c 6 #if BITS_PER_MP_LIMB == 32
9 #elif BITS_PER_MP_LIMB == 64
13 # error "mp_limb_t size " BITS_PER_MP_LIMB "not accounted for"
24 #if BITS_PER_MP_LIMB > 32
30 #if BITS_PER_MP_LIMB > 64
mpn2flt128.c 36 #if BITS_PER_MP_LIMB == 32
42 #elif BITS_PER_MP_LIMB == 64
49 #error "mp_limb size " BITS_PER_MP_LIMB "not accounted for"
strtod_l.c 112 #if BITS_PER_MP_LIMB == 32
115 #elif BITS_PER_MP_LIMB == 64
119 # error "mp_limb_t size " BITS_PER_MP_LIMB "not accounted for"
133 #define RETURN_LIMB_SIZE howmany (MANT_DIG, BITS_PER_MP_LIMB)
144 BITS_PER_MP_LIMB) + 2)
204 round_bit = (MANT_DIG - 1) % BITS_PER_MP_LIMB;
209 else if (shift >= BITS_PER_MP_LIMB)
213 round_limb = retval[(shift - 1) / BITS_PER_MP_LIMB];
214 round_bit = (shift - 1) % BITS_PER_MP_LIMB;
215 for (i = 0; i < (shift - 1) / BITS_PER_MP_LIMB; ++i
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/strtod/
tens_in_limb.c 6 #if BITS_PER_MP_LIMB == 32
9 #elif BITS_PER_MP_LIMB == 64
13 # error "mp_limb_t size " BITS_PER_MP_LIMB "not accounted for"
24 #if BITS_PER_MP_LIMB > 32
30 #if BITS_PER_MP_LIMB > 64
mpn2flt128.c 36 #if BITS_PER_MP_LIMB == 32
42 #elif BITS_PER_MP_LIMB == 64
49 #error "mp_limb size " BITS_PER_MP_LIMB "not accounted for"
strtod_l.c 112 #if BITS_PER_MP_LIMB == 32
115 #elif BITS_PER_MP_LIMB == 64
119 # error "mp_limb_t size " BITS_PER_MP_LIMB "not accounted for"
133 #define RETURN_LIMB_SIZE howmany (MANT_DIG, BITS_PER_MP_LIMB)
144 BITS_PER_MP_LIMB) + 2)
204 round_bit = (MANT_DIG - 1) % BITS_PER_MP_LIMB;
209 else if (shift >= BITS_PER_MP_LIMB)
213 round_limb = retval[(shift - 1) / BITS_PER_MP_LIMB];
214 round_bit = (shift - 1) % BITS_PER_MP_LIMB;
215 for (i = 0; i < (shift - 1) / BITS_PER_MP_LIMB; ++i
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/printf/
flt1282mpn.c 41 #if BITS_PER_MP_LIMB == 32
47 #elif BITS_PER_MP_LIMB == 64
52 #error "mp_limb size " BITS_PER_MP_LIMB "not accounted for"
55 #define NUM_LEADING_ZEROS (BITS_PER_MP_LIMB \
56 - (FLT128_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB)))
78 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt));
93 res_ptr[0] <<= BITS_PER_MP_LIMB - (NUM_LEADING_ZEROS - cnt);
96 - (BITS_PER_MP_LIMB - NUM_LEADING_ZEROS) - cnt;
110 cnt += BITS_PER_MP_LIMB;
120 | res_ptr[k-l-1] >> (BITS_PER_MP_LIMB - cnt)
    [all...]
fpioconst.h 65 #if BITS_PER_MP_LIMB == 32
printf_fp.c 151 mp_limb_t fp_input[(FLT128_MANT_DIG + BITS_PER_MP_LIMB - 1) / BITS_PER_MP_LIMB];
406 to_shift = 1 + fracsize * BITS_PER_MP_LIMB - FLT128_MANT_DIG;
442 mp_size_t bignum_size = ((ABS (exponent) + BITS_PER_MP_LIMB - 1)
443 / BITS_PER_MP_LIMB
444 + (FLT128_MANT_DIG / BITS_PER_MP_LIMB > 2 ? 8 : 4))
464 if ((exponent + to_shift) % BITS_PER_MP_LIMB == 0)
466 MPN_COPY_DECR (frac + (exponent + to_shift) / BITS_PER_MP_LIMB,
468 fracsize += (exponent + to_shift) / BITS_PER_MP_LIMB;
472 cy = mpn_lshift (frac + (exponent + to_shift) / BITS_PER_MP_LIMB,
    [all...]
lshift.c 30 1. 0 < CNT < BITS_PER_MP_LIMB
73 sh_2 = BITS_PER_MP_LIMB - sh_1;
gmp-impl.h 39 #define BITS_PER_MP_LIMB (__SIZEOF_LONG_LONG__ * __CHAR_BIT__)
43 #define BITS_PER_MP_LIMB (__SIZEOF_LONG__ * __CHAR_BIT__)
47 #define BYTES_PER_MP_LIMB (BITS_PER_MP_LIMB / __CHAR_BIT__)
63 #define W_TYPE_SIZE BITS_PER_MP_LIMB
rshift.c 30 1. 0 < CNT < BITS_PER_MP_LIMB
74 sh_2 = BITS_PER_MP_LIMB - sh_1;
fpioconst.c 21 #include "gmp-impl.h" /* This defines BITS_PER_MP_LIMB. */
29 #if BITS_PER_MP_LIMB == 32
665 #elif BITS_PER_MP_LIMB == 64
1305 # error "mp_limb_t size " BITS_PER_MP_LIMB "not accounted for"
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
flt1282mpn.c 41 #if BITS_PER_MP_LIMB == 32
47 #elif BITS_PER_MP_LIMB == 64
52 #error "mp_limb size " BITS_PER_MP_LIMB "not accounted for"
55 #define NUM_LEADING_ZEROS (BITS_PER_MP_LIMB \
56 - (FLT128_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB)))
78 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt));
93 res_ptr[0] <<= BITS_PER_MP_LIMB - (NUM_LEADING_ZEROS - cnt);
96 - (BITS_PER_MP_LIMB - NUM_LEADING_ZEROS) - cnt;
110 cnt += BITS_PER_MP_LIMB;
120 | res_ptr[k-l-1] >> (BITS_PER_MP_LIMB - cnt)
    [all...]
fpioconst.h 65 #if BITS_PER_MP_LIMB == 32
printf_fp.c 151 mp_limb_t fp_input[(FLT128_MANT_DIG + BITS_PER_MP_LIMB - 1) / BITS_PER_MP_LIMB];
406 to_shift = 1 + fracsize * BITS_PER_MP_LIMB - FLT128_MANT_DIG;
442 mp_size_t bignum_size = ((ABS (exponent) + BITS_PER_MP_LIMB - 1)
443 / BITS_PER_MP_LIMB
444 + (FLT128_MANT_DIG / BITS_PER_MP_LIMB > 2 ? 8 : 4))
464 if ((exponent + to_shift) % BITS_PER_MP_LIMB == 0)
466 MPN_COPY_DECR (frac + (exponent + to_shift) / BITS_PER_MP_LIMB,
468 fracsize += (exponent + to_shift) / BITS_PER_MP_LIMB;
472 cy = mpn_lshift (frac + (exponent + to_shift) / BITS_PER_MP_LIMB,
    [all...]
lshift.c 30 1. 0 < CNT < BITS_PER_MP_LIMB
73 sh_2 = BITS_PER_MP_LIMB - sh_1;
rshift.c 30 1. 0 < CNT < BITS_PER_MP_LIMB
74 sh_2 = BITS_PER_MP_LIMB - sh_1;
gmp-impl.h 36 #define BITS_PER_MP_LIMB (__SIZEOF_LONG__ * __CHAR_BIT__)
37 #define BYTES_PER_MP_LIMB (BITS_PER_MP_LIMB / __CHAR_BIT__)
55 #define W_TYPE_SIZE BITS_PER_MP_LIMB
fpioconst.c 21 #include "gmp-impl.h" /* This defines BITS_PER_MP_LIMB. */
29 #if BITS_PER_MP_LIMB == 32
665 #elif BITS_PER_MP_LIMB == 64
1305 # error "mp_limb_t size " BITS_PER_MP_LIMB "not accounted for"
  /src/external/lgpl3/mpc/dist/src/
mpc-impl.h 51 #ifndef BITS_PER_MP_LIMB
52 #define BITS_PER_MP_LIMB mp_bits_per_limb
pow.c 436 #define MPFR_LIMB_HIGHBIT ((mp_limb_t) 1 << (BITS_PER_MP_LIMB - 1))
462 prec = ((prec - 1) / BITS_PER_MP_LIMB + 1) * BITS_PER_MP_LIMB - expo;
465 yn = prec / BITS_PER_MP_LIMB;
469 /* if expo is a multiple of BITS_PER_MP_LIMB, t is bit 0 */
470 if (expo % BITS_PER_MP_LIMB == 0 ? (yp[yn] & 1) == 0
471 : yp[yn] << ((expo % BITS_PER_MP_LIMB) - 1) != MPFR_LIMB_HIGHBIT)
mul.c 500 <= (mpfr_prec_t) MUL_KARATSUBA_THRESHOLD * BITS_PER_MP_LIMB)
  /src/external/lgpl3/mpc/dist/tests/
tmul.c 181 mpc_set_prec (x, i * BITS_PER_MP_LIMB);
182 mpc_set_prec (y, i * BITS_PER_MP_LIMB);
183 mpc_set_prec (z, i * BITS_PER_MP_LIMB);

Completed in 44 milliseconds