Searched defs:mp_digit (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/common/mpi/
H A Dmpi.h153 /* We only use unsigned long for mp_digit iff long is more than 32 bits. */
155 typedef unsigned long mp_digit; typedef
166 typedef unsigned long long mp_digit; typedef
177 typedef unsigned int mp_digit; typedef
217 #define MP_DIGIT_BIT (CHAR_BIT*sizeof(mp_digit))
222 #define MP_HALF_RADIX (1+(mp_digit)MP_HALF_DIGIT_MAX)
245 mp_digit *dp; /* the digits themselves */
260 void mp_set(mp_int *mp, mp_digit d);
266 mp_err mp_add_d(const mp_int *a, mp_digit d, mp_int *b);
267 mp_err mp_sub_d(const mp_int *a, mp_digit
[all...]

Completed in 21 milliseconds