Lines Matching refs:al
510 int top, al, bl; in bn_mul_fixed_top() local
524 al = a->top; in bn_mul_fixed_top()
527 if ((al == 0) || (bl == 0)) { in bn_mul_fixed_top()
531 top = al + bl; in bn_mul_fixed_top()
541 i = al - bl; in bn_mul_fixed_top()
546 if (al == 4) { in bn_mul_fixed_top()
554 if (al == 8) { in bn_mul_fixed_top()
564 if ((al >= BN_MULL_SIZE_NORMAL) && (bl >= BN_MULL_SIZE_NORMAL)) { in bn_mul_fixed_top()
571 j = BN_num_bits_word((BN_ULONG)al); in bn_mul_fixed_top()
577 assert(j <= al || j <= bl); in bn_mul_fixed_top()
582 if (al > j || bl > j) { in bn_mul_fixed_top()
588 j, al - j, bl - j, t->d); in bn_mul_fixed_top()
595 bn_mul_recursive(rr->d, a->d, b->d, j, al - j, bl - j, t->d); in bn_mul_fixed_top()
605 bn_mul_normal(rr->d, a->d, al, b->d, bl); in bn_mul_fixed_top()