Symbol: MP_DIGIT_BIT
usr/src/common/crypto/ecc/ec2_mont.c
231
j = MP_DIGIT_BIT - 1;
usr/src/common/crypto/ecc/ec2_mont.c
233
top_bit <<= MP_DIGIT_BIT - 1;
usr/src/common/crypto/ecc/ec2_mont.c
245
j = MP_DIGIT_BIT - 1;
usr/src/common/crypto/ecc/ec2_mont.c
260
j = MP_DIGIT_BIT - 1;
usr/src/common/crypto/ecc/ecl-priv.h
83
bout = (w >> MP_DIGIT_BIT) & 1; }
usr/src/common/crypto/ecc/ecp_521.c
87
| (MP_DIGIT(a, 1+i) << (MP_DIGIT_BIT-9));
usr/src/common/crypto/ecc/ecp_mont.c
94
i += MP_DIGIT_BIT - 1;
usr/src/common/crypto/ecc/ecp_mont.c
95
mmm->b = i - i % MP_DIGIT_BIT;
usr/src/common/mpi/mp_gf2m.c
573
top_bit <<= MP_DIGIT_BIT - 1;
usr/src/common/mpi/mp_gf2m.c
580
for (j = MP_DIGIT_BIT - 1; j >= 0; j--) {
usr/src/common/mpi/mp_gf2m.c
582
if (k < max) p[k] = MP_DIGIT_BIT * i + j;
usr/src/common/mpi/mpi.c
2052
n += MP_DIGIT_BIT;
usr/src/common/mpi/mpi.c
2196
ix = MP_HOWMANY(k, MP_DIGIT_BIT) + MP_USED(p) + 1;
usr/src/common/mpi/mpi.c
2203
int j = MP_MIN(k, MP_DIGIT_BIT);
usr/src/common/mpi/mpi.c
2205
if (j < MP_DIGIT_BIT) {
usr/src/common/mpi/mpi.c
2303
if (k <= MP_DIGIT_BIT) {
usr/src/common/mpi/mpi.c
2305
if (k < MP_DIGIT_BIT)
usr/src/common/mpi/mpi.c
3009
dshift = d / MP_DIGIT_BIT;
usr/src/common/mpi/mpi.c
3010
bshift = d % MP_DIGIT_BIT;
usr/src/common/mpi/mpi.c
3012
mask = ((mp_digit)~0 << (MP_DIGIT_BIT - bshift));
usr/src/common/mpi/mpi.c
3778
w >>= MP_DIGIT_BIT;
usr/src/common/mpi/mpi.c
3794
w >>= MP_DIGIT_BIT;
usr/src/common/mpi/mpi.c
3853
w >>= MP_DIGIT_BIT;
usr/src/common/mpi/mpi.c
3868
w >>= MP_DIGIT_BIT;
usr/src/common/mpi/mpi.c
3906
Phi = (mp_digit)(product >> MP_DIGIT_BIT); }
usr/src/common/mpi/mpi.c
4049
Phi = (mp_digit)(square >> MP_DIGIT_BIT); }
usr/src/common/mpi/mpi.c
4282
q_msd = (q_msd << MP_DIGIT_BIT) | MP_DIGIT(&part, MP_USED(&part) - 2);
usr/src/common/mpi/mpi.c
4525
extra += MP_DIGIT_BIT;
usr/src/common/mpi/mpi.h
220
#define MP_HALF_DIGIT_BIT (MP_DIGIT_BIT/2)
usr/src/common/mpi/mpi.h
366
#define DIGIT_BIT MP_DIGIT_BIT
usr/src/common/mpi/mplogic.c
132
ix = bitNum / MP_DIGIT_BIT;
usr/src/common/mpi/mplogic.c
139
bitNum = bitNum % MP_DIGIT_BIT;
usr/src/common/mpi/mplogic.c
161
ix = bitNum / MP_DIGIT_BIT;
usr/src/common/mpi/mplogic.c
164
bit = bitNum % MP_DIGIT_BIT;
usr/src/common/mpi/mplogic.c
181
mp_size rshift = (lsbNum % MP_DIGIT_BIT);
usr/src/common/mpi/mplogic.c
182
mp_size lsWndx = (lsbNum / MP_DIGIT_BIT);
usr/src/common/mpi/mplogic.c
187
ARGCHK(MP_HOWMANY(lsbNum, MP_DIGIT_BIT) <= MP_USED(a), MP_RANGE);
usr/src/common/mpi/mplogic.c
189
if ((numBits + lsbNum % MP_DIGIT_BIT <= MP_DIGIT_BIT) ||
usr/src/common/mpi/mplogic.c
193
mask &= ((digit[0] >> rshift) | (digit[1] << (MP_DIGIT_BIT - rshift)));
usr/src/common/mpi/mplogic.c
222
bits += ix * MP_DIGIT_BIT;