Lines Matching full:mask
69 macros mask off the upper and lower digits of the mp_word (the
675 mp_digit mask;
677 mask = (1 << pow) - 1;
678 rem = DIGIT(a, 0) & mask;
2971 mp_digit save, next, mask, *dp;
2981 mask = (1 << d) - 1;
2985 if((dp[used - 1] >> (DIGIT_BIT - d)) & mask) {
2994 next = (dp[ix] >> (DIGIT_BIT - d)) & mask;
3024 mp_digit save, next, mask, *dp = DIGITS(mp);
3029 mask = (1 << d) - 1;
3033 next = dp[ix] & mask;