Home
last modified time | relevance | path

Searched refs:two_i_2 (Results 1 – 1 of 1) sorted by relevance

/dragonfly/contrib/mpfr/src/
HDextract.c37 unsigned long two_i_2 = i ? two_i / 2 : 1; in mpfr_extract() local
43 _mpz_realloc (y, two_i_2); in mpfr_extract()
46 MPN_ZERO (PTR(y), two_i_2); in mpfr_extract()
47 if ((mpfr_uexp_t) size_p >= two_i_2) in mpfr_extract()
48 MPN_COPY (PTR(y) + two_i - size_p, MPFR_MANT(p), size_p - two_i_2); in mpfr_extract()
51 MPN_COPY (PTR(y), MPFR_MANT(p) + size_p - two_i, two_i_2); in mpfr_extract()
53 MPN_NORMALIZE (PTR(y), two_i_2); in mpfr_extract()
54 SIZ(y) = (MPFR_IS_NEG (p)) ? -two_i_2 : two_i_2; in mpfr_extract()