Lines Matching defs:meth
30 if (group->meth->field_inv == NULL || group->meth->field_mul == NULL)
38 || !TEST_true(group->meth->field_inv(group, b, BN_value_one(), ctx))
43 || !TEST_true(group->meth->field_inv(group, b, a, ctx))
44 || (group->meth->field_encode &&
45 !TEST_true(group->meth->field_encode(group, a, a, ctx)))
46 || (group->meth->field_encode &&
47 !TEST_true(group->meth->field_encode(group, b, b, ctx)))
48 || !TEST_true(group->meth->field_mul(group, c, a, b, ctx))
49 || (group->meth->field_decode &&
50 !TEST_true(group->meth->field_decode(group, c, c, ctx)))
56 if (!TEST_false(group->meth->field_inv(group, b, a, ctx))
61 || !TEST_false(group->meth->field_inv(group, b, group->field, ctx))
75 static int field_tests(const EC_METHOD *meth, const unsigned char *params,
90 || !TEST_ptr(group = EC_GROUP_new(meth))