Home
last modified time | relevance | path

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

/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dextract.c36 unsigned long two_i = 1UL << i; in mpfr_extract() local
37 unsigned long two_i_2 = i ? two_i / 2 : 1; in mpfr_extract()
40 MPFR_ASSERTN (two_i != 0 && two_i_2 <= INT_MAX); /* overflow check */ in mpfr_extract()
46 if (size_p < two_i) in mpfr_extract()
50 MPN_COPY (PTR(y) + (two_i - size_p), MPFR_MANT(p), size_p - two_i_2); in mpfr_extract()
53 MPN_COPY (PTR(y), MPFR_MANT(p) + size_p - two_i, two_i_2); in mpfr_extract()