Lines Matching refs:BITS_PER_MP_LIMB
97 #if BITS_PER_MP_LIMB == 32 in __mpn_extract_long_double()
104 #elif BITS_PER_MP_LIMB == 64 in __mpn_extract_long_double()
110 #error "mp_limb size " BITS_PER_MP_LIMB "not accounted for" in __mpn_extract_long_double()
113 #define NUM_LEADING_ZEROS (BITS_PER_MP_LIMB \ in __mpn_extract_long_double()
114 - (LDBL_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB))) in __mpn_extract_long_double()
139 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt)); in __mpn_extract_long_double()
154 res_ptr[0] <<= BITS_PER_MP_LIMB - (NUM_LEADING_ZEROS - cnt); in __mpn_extract_long_double()
157 - (BITS_PER_MP_LIMB - NUM_LEADING_ZEROS) - cnt; in __mpn_extract_long_double()
171 cnt += BITS_PER_MP_LIMB; in __mpn_extract_long_double()
181 | res_ptr[k-l-1] >> (BITS_PER_MP_LIMB - cnt); in __mpn_extract_long_double()
187 *expt = DBL_MIN_EXP - 1 - l * BITS_PER_MP_LIMB - cnt; in __mpn_extract_long_double()
194 - ((N - 1) * BITS_PER_MP_LIMB)); in __mpn_extract_long_double()