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

  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
co-586.pl 16 sub mul_add_c subroutine
167 &mul_add_c($a,$ai,$b,$bi,$c0,$c1,$c2,$v,$i,$na,$nb);
x86_64-gcc.c 287 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
295 #define mul_add_c(a, b, c0, c1, c2) \
321 #define mul_add_c(a, b, c0, c1, c2) \ macro
372 mul_add_c(a[0], b[0], c1, c2, c3);
375 mul_add_c(a[0], b[1], c2, c3, c1);
376 mul_add_c(a[1], b[0], c2, c3, c1);
379 mul_add_c(a[2], b[0], c3, c1, c2);
380 mul_add_c(a[1], b[1], c3, c1, c2);
381 mul_add_c(a[0], b[2], c3, c1, c2);
384 mul_add_c(a[0], b[3], c1, c2, c3)
    [all...]
  /external/openssl/crypto/bn/asm/
co-586.pl 16 sub mul_add_c subroutine
167 &mul_add_c($a,$ai,$b,$bi,$c0,$c1,$c2,$v,$i,$na,$nb);
s390x.S 333 #define mul_add_c(ai,bi,c1,c2,c3) \ define
352 mul_add_c(0,0,c1,c2,c3);
356 mul_add_c(0,1,c2,c3,c1);
357 mul_add_c(1,0,c2,c3,c1);
361 mul_add_c(2,0,c3,c1,c2);
362 mul_add_c(1,1,c3,c1,c2);
363 mul_add_c(0,2,c3,c1,c2);
367 mul_add_c(0,3,c1,c2,c3);
368 mul_add_c(1,2,c1,c2,c3);
369 mul_add_c(2,1,c1,c2,c3)
    [all...]
x86_64-gcc.c 271 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
278 #define mul_add_c(a,b,c0,c1,c2) { \
296 #define mul_add_c(a,b,c0,c1,c2) do { \ macro
361 mul_add_c(a[0],b[0],c1,c2,c3);
364 mul_add_c(a[0],b[1],c2,c3,c1);
365 mul_add_c(a[1],b[0],c2,c3,c1);
368 mul_add_c(a[2],b[0],c3,c1,c2);
369 mul_add_c(a[1],b[1],c3,c1,c2);
370 mul_add_c(a[0],b[2],c3,c1,c2);
373 mul_add_c(a[0],b[3],c1,c2,c3)
    [all...]
  /external/openssl/crypto/bn/asm/x86/
comba.pl 4 sub mul_add_c subroutine
155 &mul_add_c($a,$ai,$b,$bi,$c0,$c1,$c2,$v,$i,$na,$nb);
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
generic.c 651 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
657 #define mul_add_c(a, b, c0, c1, c2) \ macro
697 #define mul_add_c(a, b, c0, c1, c2) \ macro
735 #define mul_add_c(a, b, c0, c1, c2) \ macro
775 #define mul_add_c(a, b, c0, c1, c2) \ macro
831 mul_add_c(a[0], b[0], c1, c2, c3);
834 mul_add_c(a[0], b[1], c2, c3, c1);
835 mul_add_c(a[1], b[0], c2, c3, c1);
838 mul_add_c(a[2], b[0], c3, c1, c2);
839 mul_add_c(a[1], b[1], c3, c1, c2)
    [all...]
  /external/openssl/crypto/bn/
bn_asm.c 436 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
442 #define mul_add_c(a,b,c0,c1,c2) \ macro
471 #define mul_add_c(a,b,c0,c1,c2) { \ macro
499 #define mul_add_c(a,b,c0,c1,c2) { \ macro
529 #define mul_add_c(a,b,c0,c1,c2) \ macro
570 mul_add_c(a[0],b[0],c1,c2,c3);
573 mul_add_c(a[0],b[1],c2,c3,c1);
574 mul_add_c(a[1],b[0],c2,c3,c1);
577 mul_add_c(a[2],b[0],c3,c1,c2);
578 mul_add_c(a[1],b[1],c3,c1,c2)
    [all...]

Completed in 307 milliseconds