Lines Matching refs:cnt
131 int cnt; in __mpn_extract_long_double() local
136 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_long_double()
137 cnt -= NUM_LEADING_ZEROS; in __mpn_extract_long_double()
138 res_ptr[N - 1] = res_ptr[N - 1] << cnt in __mpn_extract_long_double()
139 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt)); in __mpn_extract_long_double()
140 res_ptr[0] <<= cnt; in __mpn_extract_long_double()
141 *expt = DBL_MIN_EXP - 1 - cnt; in __mpn_extract_long_double()
145 count_leading_zeros (cnt, res_ptr[0]); in __mpn_extract_long_double()
146 if (cnt >= NUM_LEADING_ZEROS) in __mpn_extract_long_double()
148 res_ptr[N - 1] = res_ptr[0] << (cnt - NUM_LEADING_ZEROS); in __mpn_extract_long_double()
153 res_ptr[N - 1] = res_ptr[0] >> (NUM_LEADING_ZEROS - 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()
166 count_leading_zeros (cnt, res_ptr[j]); in __mpn_extract_long_double()
167 cnt -= NUM_LEADING_ZEROS; in __mpn_extract_long_double()
169 if (cnt < 0) in __mpn_extract_long_double()
171 cnt += BITS_PER_MP_LIMB; in __mpn_extract_long_double()
174 if (!cnt) in __mpn_extract_long_double()
180 res_ptr[k] = res_ptr[k-l] << cnt in __mpn_extract_long_double()
181 | res_ptr[k-l-1] >> (BITS_PER_MP_LIMB - cnt); in __mpn_extract_long_double()
182 res_ptr[k--] = res_ptr[0] << cnt; in __mpn_extract_long_double()
187 *expt = DBL_MIN_EXP - 1 - l * BITS_PER_MP_LIMB - cnt; in __mpn_extract_long_double()