Home
last modified time | relevance | path

Searched refs:s_bmul_2x2 (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/mpi/
H A Dmp_gf2m.c140 s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1, in s_bmul_2x2() function
164 s_bmul_2x2(zm, a1, a2^a0, b1, b2^b0); /* fill middle 4 words */ in s_bmul_3x3()
165 s_bmul_2x2(r, a1, a0, b1, b0); /* fill bottom 4 words */ in s_bmul_3x3()
188 s_bmul_2x2(r+4, a3, a2, b3, b2); /* fill top 4 words */ in s_bmul_4x4()
189 s_bmul_2x2(zm, a3^a1, a2^a0, b3^b1, b2^b0); /* fill middle 4 words */ in s_bmul_4x4()
190 s_bmul_2x2(r, a1, a0, b1, b0); /* fill bottom 4 words */ in s_bmul_4x4()
H A Dmp_gf2m-priv.h90 void s_bmul_2x2(mp_digit *r, const mp_digit a1, const mp_digit a0, const mp_digit b1,