Lines Matching refs:mp_digit

53 const mp_digit mp_gf2m_sqr_tb[16] =
65 s_bmul_1x1(mp_digit *rh, mp_digit *rl, const mp_digit a, const mp_digit b) in s_bmul_1x1()
67 register mp_digit h, l, s; in s_bmul_1x1()
68 mp_digit tab[8], top2b = a >> 30; in s_bmul_1x1()
69 register mp_digit a1, a2, a4; in s_bmul_1x1()
97 s_bmul_1x1(mp_digit *rh, mp_digit *rl, const mp_digit a, const mp_digit b) in s_bmul_1x1()
99 register mp_digit h, l, s; in s_bmul_1x1()
100 mp_digit tab[16], top3b = a >> 61; in s_bmul_1x1()
101 register mp_digit a1, a2, a4, a8; in s_bmul_1x1()
142 s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1, in s_bmul_2x2()
143 const mp_digit b0) in s_bmul_2x2()
145 mp_digit m1, m0; in s_bmul_2x2()
160 s_bmul_3x3(mp_digit *r, const mp_digit a2, const mp_digit a1, const mp_digit a0, in s_bmul_3x3()
161 const mp_digit b2, const mp_digit b1, const mp_digit b0) in s_bmul_3x3()
163 mp_digit zm[4]; in s_bmul_3x3()
184 void s_bmul_4x4(mp_digit *r, const mp_digit a3, const mp_digit a2, const mp_digit a1, in s_bmul_4x4()
185 const mp_digit a0, const mp_digit b3, const mp_digit b2, const mp_digit b1, in s_bmul_4x4()
186 const mp_digit b0) in s_bmul_4x4()
188 mp_digit zm[4]; in s_bmul_4x4()
212 mp_digit *pa, *pb, *pc; in mp_badd()
258 s_bmul_d(const mp_digit *a, mp_size a_len, mp_digit b, mp_digit *d) in s_bmul_d()
260 mp_digit a_i, a0b0, a1b1, carry = 0; in s_bmul_d()
272 s_bmul_d_add(const mp_digit *a, mp_size a_len, mp_digit b, mp_digit *d) in s_bmul_d_add()
274 mp_digit a_i, a0b0, a1b1, carry = 0; in s_bmul_d_add()
290 mp_digit *pb, b_i; in mp_bmul()
357 mp_digit zz, *z, tmp; in mp_bmod()
452 mp_digit *pa, *pr, a_i; in mp_bsqrmod()
572 mp_digit top_bit, mask; in mp_bpoly2arr()