Lines Matching refs:N
103 #define N 4 in __mpn_extract_long_double() macro
108 #define N 2 in __mpn_extract_long_double() macro
114 - (LDBL_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB))) in __mpn_extract_long_double()
121 && res_ptr[N - 2] == 0 && res_ptr[N - 1] == 0) /* Assumes N<=4. */ in __mpn_extract_long_double()
133 #if N == 2 in __mpn_extract_long_double()
134 if (res_ptr[N - 1] != 0) in __mpn_extract_long_double()
136 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_long_double()
138 res_ptr[N - 1] = res_ptr[N - 1] << cnt 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()
162 for (j = N - 1; j > 0; j--) in __mpn_extract_long_double()
168 l = N - 1 - j; in __mpn_extract_long_double()
175 for (k = N - 1; k >= l; k--) in __mpn_extract_long_double()
179 for (k = N - 1; k > l; k--) in __mpn_extract_long_double()
193 res_ptr[N - 1] |= (mp_limb_t) 1 << (LDBL_MANT_DIG - 1 in __mpn_extract_long_double()
194 - ((N - 1) * BITS_PER_MP_LIMB)); in __mpn_extract_long_double()
196 return N; in __mpn_extract_long_double()