Lines Matching refs:gy
150 mp_int one, order_1, gx, gy, rx, ry, n; in ectest_curve_GFp() local
159 MP_CHECKOK(mp_init(&gy, kmflag)); in ectest_curve_GFp()
170 MP_CHECKOK(group->meth->field_dec(&group->geny, &gy, group->meth)); in ectest_curve_GFp()
173 MP_CHECKOK(mp_copy(&group->geny, &gy)); in ectest_curve_GFp()
180 MP_CHECKOK(mp_toradix(&gy, s, 16)); in ectest_curve_GFp()
244 if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) { in ectest_curve_GFp()
252 MP_CHECKOK(ECPoint_mul(group, &order_1, &gx, &gy, &rx, &ry)); in ectest_curve_GFp()
261 if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) { in ectest_curve_GFp()
321 MP_CHECKOK(ECPoint_mul(group, &group->order, &gx, &gy, &rx, &ry)); in ectest_curve_GFp()
337 (group, &order_1, &order_1, &gx, &gy, &rx, &ry)); in ectest_curve_GFp()
348 if ((mp_cmp(&rx, &gx) != 0) || (mp_cmp(&ry, &gy) != 0)) { in ectest_curve_GFp()
355 if (ECPoint_validate(group, &gx, &gy) != MP_YES) { in ectest_curve_GFp()
360 MP_CHECKOK(mp_add_d(&gy, 1, &ry)); in ectest_curve_GFp()
388 (group, &n, &n, &gx, &gy, &rx, &ry)), 100); in ectest_curve_GFp()
394 (ECPoint_mul(group, &n, &gx, &gy, &rx, &ry)), in ectest_curve_GFp()
398 (group, &n, &n, &gx, &gy, &rx, &ry)), 100); in ectest_curve_GFp()
406 mp_clear(&gy); in ectest_curve_GFp()