Lines Matching refs:aq
2395 BIGNUM ap, aq, tmp; in big_modexp_crt_ext() local
2408 if ((err = big_init1(&aq, q->len, NULL, 0)) != BIG_OK) { in big_modexp_crt_ext()
2440 if ((err = big_div_pos(NULL, &aq, &tmp, q)) != BIG_OK) { in big_modexp_crt_ext()
2447 if ((err = big_div_pos(NULL, &aq, a, q)) != BIG_OK) { in big_modexp_crt_ext()
2456 if ((err = big_modexp_ext(&aq, &aq, dmodqminus1, q, q_rr, info)) != in big_modexp_crt_ext()
2460 if ((err = big_sub(&tmp, &aq, &ap)) != BIG_OK) { in big_modexp_crt_ext()
2468 if ((err = big_div_pos(NULL, &aq, &tmp, q)) != BIG_OK) { in big_modexp_crt_ext()
2471 if ((sign == -1) && (!big_is_zero(&aq))) { in big_modexp_crt_ext()
2472 (void) big_sub_pos(&aq, q, &aq); in big_modexp_crt_ext()
2474 if ((err = big_mul(&tmp, &aq, p)) != BIG_OK) { in big_modexp_crt_ext()
2482 big_finish(&aq); in big_modexp_crt_ext()