Lines Matching refs:xx
579 /* Invert xx, reduce modulo p, and store the result in r. r could be xx.
585 int BN_GF2m_mod_inv_arr(BIGNUM *r, const BIGNUM *xx, const int p[], BN_CTX *ctx)
590 bn_check_top(xx);
595 ret = BN_GF2m_mod_inv(r, xx, field, ctx);
704 /* Divide yy by xx, reduce modulo p, and store the result in r. r could be xx
705 * or yy, xx could equal yy.
711 int BN_GF2m_mod_div_arr(BIGNUM *r, const BIGNUM *yy, const BIGNUM *xx, const int p[], BN_CTX *ctx)
717 bn_check_top(xx);
723 ret = BN_GF2m_mod_div(r, yy, xx, field, ctx);