Lines Matching refs:rr
511 BIGNUM *rr; in bn_mul_fixed_top() local
535 if ((rr = BN_CTX_get(ctx)) == NULL) in bn_mul_fixed_top()
538 rr = r; in bn_mul_fixed_top()
547 if (bn_wexpand(rr, 8) == NULL) in bn_mul_fixed_top()
549 rr->top = 8; in bn_mul_fixed_top()
550 bn_mul_comba4(rr->d, a->d, b->d); in bn_mul_fixed_top()
555 if (bn_wexpand(rr, 16) == NULL) in bn_mul_fixed_top()
557 rr->top = 16; in bn_mul_fixed_top()
558 bn_mul_comba8(rr->d, a->d, b->d); in bn_mul_fixed_top()
585 if (bn_wexpand(rr, k * 4) == NULL) in bn_mul_fixed_top()
587 bn_mul_part_recursive(rr->d, a->d, b->d, in bn_mul_fixed_top()
593 if (bn_wexpand(rr, k * 2) == NULL) 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()
597 rr->top = top; in bn_mul_fixed_top()
602 if (bn_wexpand(rr, top) == NULL) in bn_mul_fixed_top()
604 rr->top = top; in bn_mul_fixed_top()
605 bn_mul_normal(rr->d, a->d, al, b->d, bl); in bn_mul_fixed_top()
610 rr->neg = a->neg ^ b->neg; in bn_mul_fixed_top()
611 rr->flags |= BN_FLG_FIXED_TOP; in bn_mul_fixed_top()
612 if (r != rr && BN_copy(r, rr) == NULL) in bn_mul_fixed_top()
624 BN_ULONG *rr; in bn_mul_normal() local
638 rr = &(r[na]); in bn_mul_normal()
643 rr[0] = bn_mul_words(r, a, na, b[0]); in bn_mul_normal()
648 rr[1] = bn_mul_add_words(&(r[1]), a, na, b[1]); in bn_mul_normal()
651 rr[2] = bn_mul_add_words(&(r[2]), a, na, b[2]); in bn_mul_normal()
654 rr[3] = bn_mul_add_words(&(r[3]), a, na, b[3]); in bn_mul_normal()
657 rr[4] = bn_mul_add_words(&(r[4]), a, na, b[4]); in bn_mul_normal()
658 rr += 4; in bn_mul_normal()