Lines Matching refs:N
48 #define N 4 in __mpn_extract_long_double() macro
54 #define N 2 in __mpn_extract_long_double() macro
60 - (LDBL_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB))) in __mpn_extract_long_double()
67 && res_ptr[N - 2] == 0 && res_ptr[N - 1] == 0) /* Assumes N<=4. */ in __mpn_extract_long_double()
76 #if N == 2 in __mpn_extract_long_double()
77 if (res_ptr[N - 1] != 0) in __mpn_extract_long_double()
79 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_long_double()
81 res_ptr[N - 1] = res_ptr[N - 1] << cnt 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()
105 for (j = N - 1; j > 0; j--) in __mpn_extract_long_double()
111 l = N - 1 - j; in __mpn_extract_long_double()
118 for (k = N - 1; k >= l; k--) in __mpn_extract_long_double()
122 for (k = N - 1; k > l; k--) in __mpn_extract_long_double()
136 res_ptr[N - 1] |= (mp_limb_t) 1 << (LDBL_MANT_DIG - 1 in __mpn_extract_long_double()
137 - ((N - 1) * BITS_PER_MP_LIMB)); in __mpn_extract_long_double()
139 return N; in __mpn_extract_long_double()