Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/mpi/
H A Dmp_gf2m-priv.h54 #define MP_DIGIT_BITS 32 macro
56 #define MP_DIGIT_BITS 64 macro
60 #if MP_DIGIT_BITS == 32
H A Dmp_gf2m.c61 #if MP_DIGIT_BITS == 32
368 dN = p[0] / MP_DIGIT_BITS; in mp_bmod()
382 d0 = n % MP_DIGIT_BITS; in mp_bmod()
383 d1 = MP_DIGIT_BITS - d0; in mp_bmod()
384 n /= MP_DIGIT_BITS; in mp_bmod()
392 d0 = p[0] % MP_DIGIT_BITS; in mp_bmod()
393 d1 = MP_DIGIT_BITS - d0; in mp_bmod()
403 d0 = p[0] % MP_DIGIT_BITS; in mp_bmod()
406 d1 = MP_DIGIT_BITS - d0; in mp_bmod()
414 n = p[k] / MP_DIGIT_BITS; in mp_bmod()
[all …]