Searched refs:MP_PREC (Results 1 - 5 of 5) sorted by relevance

/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_init.c24 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
30 for (i = 0; i < MP_PREC; i++) {
37 a->alloc = MP_PREC;
H A Dbn_mp_init_size.c24 size += (MP_PREC * 2) - (size % MP_PREC);
H A Dbn_mp_grow.c26 /* ensure there are always at least MP_PREC digits extra on top */
27 size += (MP_PREC * 2) - (size % MP_PREC);
H A Dtommath.h167 #ifndef MP_PREC
169 #define MP_PREC 32 /* default digits of precision */ macro
171 #define MP_PREC 8 /* default digits of precision */ macro
/barrelfish-2018-10-04/lib/tommath/pre_gen/
H A Dmpi.c3344 /* ensure there are always at least MP_PREC digits extra on top */
3345 size += (MP_PREC * 2) - (size % MP_PREC);
3403 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
3409 for (i = 0; i < MP_PREC; i++) {
3416 a->alloc = MP_PREC;
3623 size += (MP_PREC * 2) - (size % MP_PREC);

Completed in 61 milliseconds