Lines Matching refs:t
54 BN_ULONG t[8]; in bn_sqr_fixed_top() local
55 bn_sqr_normal(rr->d, a->d, 4, t); in bn_sqr_fixed_top()
61 BN_ULONG t[16]; in bn_sqr_fixed_top() local
62 bn_sqr_normal(rr->d, a->d, 8, t); in bn_sqr_fixed_top()
69 BN_ULONG t[BN_SQR_RECURSIVE_SIZE_NORMAL * 2]; in bn_sqr_fixed_top() local
70 bn_sqr_normal(rr->d, a->d, al, t); 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() argument
164 bn_sqr_normal(r, a, 4, t); in bn_sqr_recursive()
171 bn_sqr_normal(r, a, 8, t); in bn_sqr_recursive()
178 bn_sqr_normal(r, a, n2, t); in bn_sqr_recursive()
185 bn_sub_words(t, a, &(a[n]), n); in bn_sqr_recursive()
187 bn_sub_words(t, &(a[n]), a, n); in bn_sqr_recursive()
192 p = &(t[n2 * 2]); in bn_sqr_recursive()
195 bn_sqr_recursive(&(t[n2]), t, n, p); in bn_sqr_recursive()
197 memset(&t[n2], 0, sizeof(*t) * n2); in bn_sqr_recursive()
207 c1 = (int)(bn_add_words(t, r, &(r[n2]), n2)); in bn_sqr_recursive()
210 c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2)); in bn_sqr_recursive()
218 c1 += (int)(bn_add_words(&(r[n]), &(r[n]), &(t[n2]), n2)); in bn_sqr_recursive()