Lines Matching defs:num
681 int ossl_ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num,
686 for (i = 0; i < num; i++) {
869 const BIGNUM *scalar, size_t num,
880 * Fixed point mul: scalar != NULL && num == 0;
882 * Variable point mul: scalar == NULL && num == 1;
884 * used, e.g., in ECDSA verification: scalar != NULL && num == 1
886 * In any other case (num > 1) we use the default wNAF implementation.
891 if (num > 1 || BN_is_zero(group->order) || BN_is_zero(group->cofactor))
892 return ossl_ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
894 if (scalar != NULL && num == 0)
898 if (scalar == NULL && num == 1)