Home
last modified time | relevance | path

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

/netbsd/external/lgpl3/gmp/dist/tests/mpn/
H A Dt-get_d.c103 got = mpn_get_d (np, nsize, sign, exp); in check_onebit()
147 got = mpn_get_d (np, nsize, sign, 0); in check_twobit()
194 got = mpn_get_d (np, nsize, sign, exp); in check_underflow()
239 got = mpn_get_d (np, nsize, sign, exp); in check_inf()
288 got = mpn_get_d (&n, (mp_size_t) 1, sign, exp); in check_ieee_denorm()
338 got = mpn_get_d (&n, (mp_size_t) 1, sign, exp); in check_ieee_overflow()
385 got = mpn_get_d (np, nsize, (mp_size_t) 0, exp); in check_0x81c25113()
459 got = mpn_get_d (np, nsize, sign, exp); in check_rand()
/netbsd/external/lgpl3/gmp/dist/mpz/
H A Dget_d.c42 return mpn_get_d (PTR (z), ABS (size), size, 0L); in mpz_get_d()
H A Dget_d_2exp.c52 return mpn_get_d (ptr, abs_size, size, -exp); in mpz_get_d_2exp()
/netbsd/external/lgpl3/gmp/dist/mpf/
H A Dget_d.c45 return mpn_get_d (PTR (src), abs_size, size, exp); in mpf_get_d()
H A Dget_d_2exp.c55 return mpn_get_d (ptr, abs_size, size, -(abs_size * GMP_NUMB_BITS - cnt)); in mpf_get_d_2exp()
/netbsd/external/lgpl3/gmp/dist/mpq/
H A Dget_d.c159 res = mpn_get_d (qp, qsize, sign_quotient, exp); in mpq_get_d()
/netbsd/external/lgpl3/gmp/dist/mpn/generic/
H A Dget_d.c139 mpn_get_d (mp_srcptr up, mp_size_t size, mp_size_t sign, long exp) in mpn_get_d() function
/netbsd/external/lgpl3/gmp/dist/
H A Dgmp-impl.h3856 #define mpn_get_d __gmpn_get_d macro
3857 __GMP_DECLSPEC double mpn_get_d (mp_srcptr, mp_size_t, mp_size_t, long) __GMP_ATTRIBUTE_PURE;
H A DChangeLog4154 * mpn/generic/get_d.c (mpn_get_d): Avoid signed overflow.
15568 in mpn_get_d.
15962 mpn_get_d now does this. Remove res==1.0 check for round upwards,
15963 mpn_get_d now rounds towards zero. Move exp store to make mpn_get_d a
16409 * mpq/get_d.c: Amend comments per mpn_get_d change.
17758 * mpq/get_d.c: Use mpn_get_d.
17886 mpn_get_d.
17890 * gmp-impl.h (mpn_get_d): Add prototype.