Lines Matching refs:cnt

74 	  int cnt;  in __mpn_extract_long_double()  local
79 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_long_double()
80 cnt -= NUM_LEADING_ZEROS; in __mpn_extract_long_double()
81 res_ptr[N - 1] = res_ptr[N - 1] << cnt in __mpn_extract_long_double()
82 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt)); in __mpn_extract_long_double()
83 res_ptr[0] <<= cnt; in __mpn_extract_long_double()
84 *expt = LDBL_MIN_EXP - 1 - cnt; in __mpn_extract_long_double()
88 count_leading_zeros (cnt, res_ptr[0]); in __mpn_extract_long_double()
89 if (cnt >= NUM_LEADING_ZEROS) in __mpn_extract_long_double()
91 res_ptr[N - 1] = res_ptr[0] << (cnt - NUM_LEADING_ZEROS); in __mpn_extract_long_double()
96 res_ptr[N - 1] = res_ptr[0] >> (NUM_LEADING_ZEROS - 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()
109 count_leading_zeros (cnt, res_ptr[j]); in __mpn_extract_long_double()
110 cnt -= NUM_LEADING_ZEROS; in __mpn_extract_long_double()
112 if (cnt < 0) in __mpn_extract_long_double()
114 cnt += BITS_PER_MP_LIMB; in __mpn_extract_long_double()
117 if (!cnt) in __mpn_extract_long_double()
123 res_ptr[k] = res_ptr[k-l] << cnt in __mpn_extract_long_double()
124 | res_ptr[k-l-1] >> (BITS_PER_MP_LIMB - cnt); in __mpn_extract_long_double()
125 res_ptr[k--] = res_ptr[0] << cnt; in __mpn_extract_long_double()
130 *expt = LDBL_MIN_EXP - 1 - l * BITS_PER_MP_LIMB - cnt; in __mpn_extract_long_double()