Lines Matching refs:N
43 # define N 2 in __mpn_extract_double() macro
48 # define N 1 in __mpn_extract_double() macro
54 - (DBL_MANT_DIG - ((N - 1) * BITS_PER_MP_LIMB))) in __mpn_extract_double()
60 if (res_ptr[0] == 0 && res_ptr[N - 1] == 0) /* Assumes N<=2. */ in __mpn_extract_double()
69 if (res_ptr[N - 1] != 0) in __mpn_extract_double()
71 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_double()
73 #if N == 2 in __mpn_extract_double()
74 res_ptr[N - 1] = res_ptr[1] << cnt in __mpn_extract_double()
75 | (N - 1) in __mpn_extract_double()
79 res_ptr[N - 1] <<= cnt; in __mpn_extract_double()
88 res_ptr[N - 1] = res_ptr[0] << (cnt - NUM_LEADING_ZEROS); in __mpn_extract_double()
93 res_ptr[N - 1] = res_ptr[0] >> (NUM_LEADING_ZEROS - cnt); in __mpn_extract_double()
103 res_ptr[N - 1] |= (mp_limb_t) 1 << (DBL_MANT_DIG - 1 in __mpn_extract_double()
104 - ((N - 1) * BITS_PER_MP_LIMB)); in __mpn_extract_double()
106 return N; in __mpn_extract_double()