Lines Matching refs:al
29 int max, al; in bn_sqr_fixed_top() local
35 al = a->top; in bn_sqr_fixed_top()
36 if (al <= 0) { in bn_sqr_fixed_top()
48 max = 2 * al; /* Non-zero (from above) */ in bn_sqr_fixed_top()
52 if (al == 4) { in bn_sqr_fixed_top()
59 } else if (al == 8) { in bn_sqr_fixed_top()
68 if (al < BN_SQR_RECURSIVE_SIZE_NORMAL) { in bn_sqr_fixed_top()
70 bn_sqr_normal(rr->d, a->d, al, t); in bn_sqr_fixed_top()
74 j = BN_num_bits_word((BN_ULONG)al); in bn_sqr_fixed_top()
77 if (al == j) { in bn_sqr_fixed_top()
80 bn_sqr_recursive(rr->d, a->d, al, tmp->d); in bn_sqr_fixed_top()
84 bn_sqr_normal(rr->d, a->d, al, tmp->d); in bn_sqr_fixed_top()
90 bn_sqr_normal(rr->d, a->d, al, tmp->d); in bn_sqr_fixed_top()