Searched refs:tnb (Results 1 – 3 of 3) sorted by relevance
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_mul.c | 179 int tna = n + dna, tnb = n + dnb; in bn_mul_recursive() local 209 c2 = bn_cmp_part_words(&(b[n]), b, tnb, tnb - n); in bn_mul_recursive() 214 bn_sub_part_words(&(t[n]), b, &(b[n]), tnb, n - tnb); /* - */ in bn_mul_recursive() 221 bn_sub_part_words(&(t[n]), &(b[n]), b, tnb, tnb - n); /* + */ in bn_mul_recursive() 231 bn_sub_part_words(&(t[n]), b, &(b[n]), tnb, n - tnb); /* - */ in bn_mul_recursive() 239 bn_sub_part_words(&(t[n]), &(b[n]), b, tnb, tnb - n); in bn_mul_recursive() 323 int tna, int tnb, BN_ULONG *t) in bn_mul_part_recursive() argument 330 bn_mul_normal(r, a, n + tna, b, n + tnb); in bn_mul_part_recursive() 336 c2 = bn_cmp_part_words(&(b[n]), b, tnb, tnb - n); in bn_mul_part_recursive() 341 bn_sub_part_words(&(t[n]), b, &(b[n]), tnb, n - tnb); /* - */ in bn_mul_part_recursive() [all …]
|
H A D | README.pod | 41 int n, int tna, int tnb, BN_ULONG *tmp); 171 bn_mul_part_recursive(B<r>, B<a>, B<b>, B<n>, B<tna>, B<tnb>, B<tmp>) 173 B<n>+B<tnb> and the 4*B<n> word arrays B<r> and B<tmp>.
|
H A D | bn_local.h | 652 int n, int tna, int tnb, BN_ULONG *t);
|