Lines Matching refs:cnt
65 int cnt; in __mpn_extract_long_double() local
76 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_long_double()
77 if (cnt != 0) in __mpn_extract_long_double()
80 res_ptr[N - 1] = res_ptr[N - 1] << cnt in __mpn_extract_long_double()
81 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt)); in __mpn_extract_long_double()
82 res_ptr[0] <<= cnt; in __mpn_extract_long_double()
84 res_ptr[N - 1] <<= cnt; in __mpn_extract_long_double()
87 *expt = LDBL_MIN_EXP - 1 - cnt; in __mpn_extract_long_double()
91 count_leading_zeros (cnt, res_ptr[0]); in __mpn_extract_long_double()
92 res_ptr[N - 1] = res_ptr[0] << cnt; in __mpn_extract_long_double()
94 *expt = LDBL_MIN_EXP - 1 - BITS_PER_MP_LIMB - cnt; in __mpn_extract_long_double()