Searched refs:bn_mul_add_words (Results 1 - 22 of 22) sorted by relevance

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/asm/
H A Dx86.pl16 &bn_mul_add_words("bn_mul_add_words");
H A Ds390x.S15 // BN_ULONG bn_mul_add_words(BN_ULONG *r2,BN_ULONG *r3,int r4,BN_ULONG r5);
16 .globl bn_mul_add_words
17 .type bn_mul_add_words,@function
19 bn_mul_add_words: label
88 .size bn_mul_add_words,.-bn_mul_add_words
H A Dbn-586.pl14 &bn_mul_add_words("bn_mul_add_words");
24 sub bn_mul_add_words subroutine
H A Dpa-risc2.s63 ; Note that the "w" argument for bn_mul_add_words and bn_mul_words
78 ; bn_mul_add_words
80 ;BN_ULONG bn_mul_add_words(BN_ULONG *r_ptr, BN_ULONG *a_ptr,
125 bn_mul_add_words label
126 .export bn_mul_add_words,entry,NO_RELOCATION,LONG_RETURN
H A Dpa-risc2W.s70 ; bn_mul_add_words
72 ;BN_ULONG bn_mul_add_words(BN_ULONG *r_ptr, BN_ULONG *a_ptr,
117 bn_mul_add_words label
118 .export bn_mul_add_words,entry,NO_RELOCATION,LONG_RETURN
H A Dsparcv8.S40 .global bn_mul_add_words
42 * BN_ULONG bn_mul_add_words(rp,ap,num,w)
47 bn_mul_add_words: label
148 .type bn_mul_add_words,#function
149 .size bn_mul_add_words,(.-bn_mul_add_words)
H A Dsparcv8plus.S170 .global bn_mul_add_words
172 * BN_ULONG bn_mul_add_words(rp,ap,num,w)
177 bn_mul_add_words: label
267 .type bn_mul_add_words,#function
268 .size bn_mul_add_words,(.-bn_mul_add_words)
H A Dia64.S101 // v=bn_mul_add_words(rp,np,nl,(rp[0]*n0)&BN_MASK2);
326 // this very instruction sequence in bn_mul_add_words loop which in
392 // BN_ULONG bn_mul_add_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w)
394 .global bn_mul_add_words#
395 .proc bn_mul_add_words#
398 bn_mul_add_words: label
455 .endp bn_mul_add_words#
584 // consumed by bn_mul_add_words called from BN_from_montgomery. In
591 // r[ 9]=bn_mul_add_words(&(r[1]),a,8,b[1]);
592 // r[10]=bn_mul_add_words(
[all...]
H A Dmips.pl113 .globl bn_mul_add_words
114 .ent bn_mul_add_words
115 bn_mul_add_words: label
121 .end bn_mul_add_words
H A Dx86_64-gcc.c109 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) function
H A Dppc.pl209 # bn_mul_add_words
253 .globl .bn_mul_add_words
1872 # "bn_mul_add_words" i.e. remove the first dot
1878 .bn_mul_add_words:
1880 # BN_ULONG bn_mul_add_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w)
H A Dmips3.s67 LEAF(bn_mul_add_words)
193 END(bn_mul_add_words)
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/asm/x86/
H A Dmul_add.pl4 sub bn_mul_add_words subroutine
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_asm.c71 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) function
146 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) function
966 r[5]=bn_mul_add_words(&(r[1]),a,4,b[1]);
967 r[6]=bn_mul_add_words(&(r[2]),a,4,b[2]);
968 r[7]=bn_mul_add_words(&(r[3]),a,4,b[3]);
974 r[ 9]=bn_mul_add_words(&(r[1]),a,8,b[1]);
975 r[10]=bn_mul_add_words(&(r[2]),a,8,b[2]);
976 r[11]=bn_mul_add_words(&(r[3]),a,8,b[3]);
977 r[12]=bn_mul_add_words(&(r[4]),a,8,b[4]);
978 r[13]=bn_mul_add_words(
[all...]
H A Dbn_mul.c1133 rr[1]=bn_mul_add_words(&(r[1]),a,na,b[1]);
1135 rr[2]=bn_mul_add_words(&(r[2]),a,na,b[2]);
1137 rr[3]=bn_mul_add_words(&(r[3]),a,na,b[3]);
1139 rr[4]=bn_mul_add_words(&(r[4]),a,na,b[4]);
1156 bn_mul_add_words(&(r[1]),a,n,b[1]);
1158 bn_mul_add_words(&(r[2]),a,n,b[2]);
1160 bn_mul_add_words(&(r[3]),a,n,b[3]);
1162 bn_mul_add_words(&(r[4]),a,n,b[4]);
H A Dbn_mont.c221 v=bn_mul_add_words(rp,np,nl,(BN_ULONG) t1);
224 v=bn_mul_add_words(rp,np,nl,(rp[0]*n0)&BN_MASK2);
H A Dbn_sqr.c183 rp[j]=bn_mul_add_words(rp,ap,j,ap[-1]);
H A Dbn.h809 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/lib/libcrypto/arch/powerpc/
H A Dppc.S101 .globl bn_mul_add_words
102 .type bn_mul_add_words,@function
1727 bn_mul_add_words: label
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/lib/libcrypto/arch/i386/
H A Dbn-586.S3 .globl bn_mul_add_words
4 .type bn_mul_add_words,@function
6 bn_mul_add_words: label
189 .size bn_mul_add_words,.-.L_bn_mul_add_words_begin
H A Dx86.S3 .globl bn_mul_add_words
4 .type bn_mul_add_words,@function
6 bn_mul_add_words: label
205 .size bn_mul_add_words,.-.L_bn_mul_add_words_begin
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/lib/libcrypto/arch/sparc/
H A Dbn-sparcv8.S40 .global bn_mul_add_words
42 * BN_ULONG bn_mul_add_words(rp,ap,num,w)
47 bn_mul_add_words: label
148 .type bn_mul_add_words,#function
149 .size bn_mul_add_words,(.-bn_mul_add_words)

Completed in 384 milliseconds