Lines Matching refs:xx
656 /* Invert xx, reduce modulo p, and store the result in r. r could be xx.
662 int BN_GF2m_mod_inv_arr(BIGNUM *r, const BIGNUM *xx, const int p[], BN_CTX *ctx)
667 bn_check_top(xx);
672 ret = BN_GF2m_mod_inv(r, xx, field, ctx);
781 /* Divide yy by xx, reduce modulo p, and store the result in r. r could be xx
782 * or yy, xx could equal yy.
788 int BN_GF2m_mod_div_arr(BIGNUM *r, const BIGNUM *yy, const BIGNUM *xx, const int p[], BN_CTX *ctx)
794 bn_check_top(xx);
800 ret = BN_GF2m_mod_div(r, yy, xx, field, ctx);