Lines Matching refs:N
44 #define N 2 in __mpn_extract_long_double() macro
49 #define N 1 in __mpn_extract_long_double() macro
58 if (res_ptr[0] == 0 && res_ptr[N - 1] == 0) /* Assumes N<=2. */ in __mpn_extract_long_double()
72 res_ptr[N - 1] &= ~((mp_limb_t) 1 << ((LDBL_MANT_DIG - 1) % BITS_PER_MP_LIMB)); in __mpn_extract_long_double()
74 if (res_ptr[N - 1] != 0) in __mpn_extract_long_double()
76 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_long_double()
79 #if N == 2 in __mpn_extract_long_double()
80 res_ptr[N - 1] = res_ptr[N - 1] << cnt in __mpn_extract_long_double()
84 res_ptr[N - 1] <<= cnt; in __mpn_extract_long_double()
92 res_ptr[N - 1] = res_ptr[0] << cnt; in __mpn_extract_long_double()
102 #if N == 2 in __mpn_extract_long_double()
103 res_ptr[N - 1] = 0x80000000ul; in __mpn_extract_long_double()
112 #if N == 2 in __mpn_extract_long_double()
115 && res_ptr[N - 1] == 0) in __mpn_extract_long_double()
119 return N; in __mpn_extract_long_double()