Lines Matching refs:cnt
67 int cnt; in __mpn_extract_double() local
71 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_double()
72 cnt -= NUM_LEADING_ZEROS; in __mpn_extract_double()
74 res_ptr[N - 1] = res_ptr[1] << cnt in __mpn_extract_double()
76 * (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt)); in __mpn_extract_double()
77 res_ptr[0] <<= cnt; in __mpn_extract_double()
79 res_ptr[N - 1] <<= cnt; in __mpn_extract_double()
81 *expt = DBL_MIN_EXP - 1 - cnt; in __mpn_extract_double()
85 count_leading_zeros (cnt, res_ptr[0]); in __mpn_extract_double()
86 if (cnt >= NUM_LEADING_ZEROS) in __mpn_extract_double()
88 res_ptr[N - 1] = res_ptr[0] << (cnt - NUM_LEADING_ZEROS); in __mpn_extract_double()
93 res_ptr[N - 1] = res_ptr[0] >> (NUM_LEADING_ZEROS - cnt); in __mpn_extract_double()
94 res_ptr[0] <<= BITS_PER_MP_LIMB - (NUM_LEADING_ZEROS - cnt); in __mpn_extract_double()
97 - (BITS_PER_MP_LIMB - NUM_LEADING_ZEROS) - cnt; in __mpn_extract_double()