Lines Matching refs:mult
62 static void mult(unsigned int out[32],const unsigned int a[32],const unsigned int b[32]) in mult() function
162 mult(b1,a1,a0 + 32); in mainloop()
163 mult(b1 + 32,a1 + 32,a0); in mainloop()
170 mult(xznb,b0,b0 + 32); in mainloop()
171 mult(xznb + 32,s,u); in mainloop()
173 mult(xzn1b + 32,r,work); in mainloop()
197 /* 9 */ mult(z9,t0,z); in recip()
198 /* 11 */ mult(z11,z9,z2); in recip()
200 /* 2^5 - 2^0 = 31 */ mult(z2_5_0,t0,z9); in recip()
207 /* 2^10 - 2^0 */ mult(z2_10_0,t0,z2_5_0); in recip()
212 /* 2^20 - 2^0 */ mult(z2_20_0,t1,z2_10_0); in recip()
217 /* 2^40 - 2^0 */ mult(t0,t1,z2_20_0); in recip()
222 /* 2^50 - 2^0 */ mult(z2_50_0,t0,z2_10_0); in recip()
227 /* 2^100 - 2^0 */ mult(z2_100_0,t1,z2_50_0); in recip()
232 /* 2^200 - 2^0 */ mult(t1,t0,z2_100_0); in recip()
237 /* 2^250 - 2^0 */ mult(t0,t1,z2_50_0); in recip()
244 /* 2^255 - 21 */ mult(out,t1,z11); in recip()
261 mult(work + 64,work,work + 32); in crypto_scalarmult_curve25519()