Searched refs:bn_sqr_recursive (Results 1 – 3 of 3) sorted by relevance
/third_party/openssl/crypto/bn/ |
D | bn_sqr.c | 80 bn_sqr_recursive(rr->d, a->d, al, tmp->d); in bn_sqr_fixed_top() 156 void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t) in bn_sqr_recursive() function 195 bn_sqr_recursive(&(t[n2]), t, n, p); in bn_sqr_recursive() 198 bn_sqr_recursive(r, a, n, p); in bn_sqr_recursive() 199 bn_sqr_recursive(&(r[n2]), &(a[n]), n, p); in bn_sqr_recursive()
|
D | README.pod | 9 bn_mul_low_recursive, bn_sqr_normal, bn_sqr_recursive, 46 void bn_sqr_recursive(BN_ULONG *r, BN_ULONG *a, int n2, BN_ULONG *tmp);
|
D | bn_local.h | 665 void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t);
|