Home | History | Annotate | Download | only in tls

Lines Matching defs:MP_PREC

103 #ifndef MP_PREC
105 #define MP_PREC 32 /* default digits of precision */
107 #define MP_PREC 8 /* default digits of precision */
367 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
373 for (i = 0; i < MP_PREC; i++) {
380 a->alloc = MP_PREC;
1255 /* ensure there are always at least MP_PREC digits extra on top */
1256 size += (MP_PREC * 2) - (size % MP_PREC);
2485 size += (MP_PREC * 2) - (size % MP_PREC);