Home
last modified time | relevance | path

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

/netbsd-src/external/lgpl3/gmp/dist/mpf/
H A Dreldiff.c47 mp_size_t dprec; in mpf_reldiff() local
52 dprec = PREC(rdiff) + ABSIZ(x); in mpf_reldiff()
53 ASSERT (PREC(rdiff)+1 == dprec - ABSIZ(x) + 1); in mpf_reldiff()
55 PREC(d) = dprec; in mpf_reldiff()
56 PTR(d) = TMP_ALLOC_LIMBS (dprec + 1); in mpf_reldiff()
/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dcache.c59 mpfr_prec_t dprec = MPFR_PREC (dest); in mpfr_cache() local
73 if (MPFR_UNLIKELY (dprec > cprec)) in mpfr_cache()
82 if (MPFR_LIKELY (dprec > cprec)) in mpfr_cache()
88 cprec = dprec; in mpfr_cache()
97 if (cprec < dprec) in mpfr_cache()
98 cprec = dprec; in mpfr_cache()
112 MPFR_ASSERTD (cprec >= dprec); in mpfr_cache()
/netbsd-src/lib/libc/stdio/
H A Dvsnprintf_ss.c133 int dprec; /* a copy of prec if [diouxX], 0 otherwise */ local
177 dprec = 0;
372 number: if ((dprec = prec) >= 0)
452 realsz = dprec > size ? dprec : size;
484 n = dprec - size;
H A Dvfwprintf.c670 int dprec; /* a copy of prec if [diouxX], 0 otherwise */ in WDECL() local
876 dprec = 0; in WDECL()
1357 number: if ((dprec = prec) >= 0) in WDECL()
1415 realsz = dprec > size ? dprec : size; in WDECL()
1445 PAD(dprec - size, zeroes); in WDECL()
/netbsd-src/sys/kern/
H A Dsubr_prf.c1266 int dprec; /* a copy of prec if [diouxX], 0 otherwise */ in kprintf() local
1300 dprec = 0; in kprintf()
1492 number: if ((dprec = prec) >= 0) in kprintf()
1569 realsz = dprec > size ? dprec : size; in kprintf()
1601 n = dprec - size; in kprintf()
/netbsd-src/external/lgpl3/gmp/dist/tests/
H A Drefmpf.c178 mp_size_t dprec = PREC(dst); in refmpf_set_overlap() local
182 refmpf_set_prec_limbs (dst, (unsigned long) MAX (dprec, ssize)); in refmpf_set_overlap()
186 PREC(dst) = dprec; in refmpf_set_overlap()
/netbsd-src/external/lgpl3/mpfr/dist/
H A DChangeLog7751 [src/cache.c] Improved variable names (→ dprec for the precision of dest