Lines Matching refs:mmm
68 mp_mont_modulus *mmm;
75 mmm = (mp_mont_modulus *) kmem_alloc(sizeof(mp_mont_modulus),
78 mmm = (mp_mont_modulus *) malloc(sizeof(mp_mont_modulus));
80 if (mmm == NULL) {
90 meth->extra1 = mmm;
94 mmm->N = meth->irr;
97 mmm->b = i - i % MP_DIGIT_BIT;
98 mmm->n0prime = 0 - s_mp_invmod_radix(MP_DIGIT(&meth->irr, 0));
174 mp_mont_modulus *mmm;
177 mmm = (mp_mont_modulus *) meth->extra1;
178 MP_CHECKOK(mpl_lsh(a, r, mmm->b));
179 MP_CHECKOK(mp_mod(r, &mmm->N, r));