Lines Matching refs:BITS_PER_MP_LIMB
43 #if BITS_PER_MP_LIMB == 32 in __mpn_extract_long_double()
49 #elif BITS_PER_MP_LIMB == 64 in __mpn_extract_long_double()
56 #error "mp_limb size " BITS_PER_MP_LIMB "not accounted for" in __mpn_extract_long_double()
59 #define NUM_LEADING_ZEROS (BITS_PER_MP_LIMB \ in __mpn_extract_long_double()
60 - (LDBL_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB))) in __mpn_extract_long_double()
82 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt)); in __mpn_extract_long_double()
97 res_ptr[0] <<= BITS_PER_MP_LIMB - (NUM_LEADING_ZEROS - cnt); in __mpn_extract_long_double()
100 - (BITS_PER_MP_LIMB - NUM_LEADING_ZEROS) - cnt; in __mpn_extract_long_double()
114 cnt += BITS_PER_MP_LIMB; in __mpn_extract_long_double()
124 | res_ptr[k-l-1] >> (BITS_PER_MP_LIMB - cnt); in __mpn_extract_long_double()
130 *expt = LDBL_MIN_EXP - 1 - l * BITS_PER_MP_LIMB - cnt; in __mpn_extract_long_double()
137 - ((N - 1) * BITS_PER_MP_LIMB)); in __mpn_extract_long_double()