Home | History | Annotate | Download | only in libtommath

Lines Matching defs:DIGIT_BIT

57  * A "mp_digit" must be able to hold DIGIT_BIT + 1 bits
58 * A "mp_word" must be able to hold 2*DIGIT_BIT + 1 bits
79 #define DIGIT_BIT 60
99 #define DIGIT_BIT 31
102 #define DIGIT_BIT 28
126 #ifndef DIGIT_BIT
127 #define DIGIT_BIT ((int)((CHAR_BIT * sizeof(mp_digit) - 1))) /* bits per digit */
130 #define MP_DIGIT_BIT DIGIT_BIT
131 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1))
176 #define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 * DIGIT_BIT + 1))