Lines Matching refs:res_ptr
33 __mpn_extract_long_double (mp_ptr res_ptr, mp_size_t size, in __mpn_extract_long_double() argument
44 res_ptr[0] = u.ieee.mantissa1; /* Low-order 32 bits of fraction. */ in __mpn_extract_long_double()
45 res_ptr[1] = u.ieee.mantissa0; /* High-order 32 bits. */ in __mpn_extract_long_double()
50 res_ptr[0] = ((mp_limb_t) u.ieee.mantissa0 << 32) | u.ieee.mantissa1; in __mpn_extract_long_double()
60 if (res_ptr[0] == 0 && res_ptr[N - 1] == 0) /* Assumes N<=2. */ in __mpn_extract_long_double()
69 if (res_ptr[N - 1] != 0) in __mpn_extract_long_double()
71 count_leading_zeros (cnt, res_ptr[N - 1]); in __mpn_extract_long_double()
75 res_ptr[N - 1] = res_ptr[N - 1] << cnt in __mpn_extract_long_double()
76 | (res_ptr[0] >> (BITS_PER_MP_LIMB - cnt)); in __mpn_extract_long_double()
77 res_ptr[0] <<= cnt; in __mpn_extract_long_double()
79 res_ptr[N - 1] <<= cnt; in __mpn_extract_long_double()
86 count_leading_zeros (cnt, res_ptr[0]); in __mpn_extract_long_double()
87 res_ptr[N - 1] = res_ptr[0] << cnt; in __mpn_extract_long_double()
88 res_ptr[0] = 0; in __mpn_extract_long_double()