Searched refs:rrsize (Results 1 - 1 of 1) sorted by relevance

/haiku-buildtools/gcc/mpfr/src/
H A Dsqrt.c29 mp_size_t rrsize; local
93 rrsize = rsize + rsize;
103 sp = MPFR_TMP_LIMBS_ALLOC (rrsize);
105 /* copy the most significant limbs of u to {sp, rrsize} */
106 if (MPFR_LIKELY(usize <= rrsize)) /* in case r and u have the same precision,
107 we have indeed rrsize = 2 * usize */
109 k = rrsize - usize;
120 MPN_COPY (sp + rrsize - usize, up, usize);
122 else /* usize > rrsize: truncate the input */
124 k = usize - rrsize;
[all...]

Completed in 102 milliseconds