HomeSort by relevance Sort by last modified time
    Searched refs:mul_add_c (Results 1 - 6 of 6) sorted by null

  /external/openssl/crypto/bn/asm/
x86_64-gcc.c 266 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
273 #define mul_add_c(a,b,c0,c1,c2) { \
291 #define mul_add_c(a,b,c0,c1,c2) do { \ macro
356 mul_add_c(a[0],b[0],c1,c2,c3);
359 mul_add_c(a[0],b[1],c2,c3,c1);
360 mul_add_c(a[1],b[0],c2,c3,c1);
363 mul_add_c(a[2],b[0],c3,c1,c2);
364 mul_add_c(a[1],b[1],c3,c1,c2);
365 mul_add_c(a[0],b[2],c3,c1,c2);
368 mul_add_c(a[0],b[3],c1,c2,c3)
    [all...]