Lines Matching refs:px

52 /* Checks if point P(px, py) is at infinity.  Uses affine coordinates. */
53 mp_err ec_GFp_pt_is_inf_aff(const mp_int *px, const mp_int *py);
55 /* Sets P(px, py) to be the point at infinity. Uses affine coordinates. */
56 mp_err ec_GFp_pt_set_inf_aff(mp_int *px, mp_int *py);
58 /* Computes R = P + Q where R is (rx, ry), P is (px, py) and Q is (qx,
60 mp_err ec_GFp_pt_add_aff(const mp_int *px, const mp_int *py,
65 mp_err ec_GFp_pt_sub_aff(const mp_int *px, const mp_int *py,
70 mp_err ec_GFp_pt_dbl_aff(const mp_int *px, const mp_int *py, mp_int *rx,
74 mp_err ec_GFp_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group);
77 /* Computes R = nP where R is (rx, ry) and P is (px, py). The parameters
80 mp_err ec_GFp_pt_mul_aff(const mp_int *n, const mp_int *px,
85 /* Converts a point P(px, py) from affine coordinates to Jacobian
87 mp_err ec_GFp_pt_aff2jac(const mp_int *px, const mp_int *py, mp_int *rx,
90 /* Converts a point P(px, py, pz) from Jacobian projective coordinates to
92 mp_err ec_GFp_pt_jac2aff(const mp_int *px, const mp_int *py,
96 /* Checks if point P(px, py, pz) is at infinity. Uses Jacobian
98 mp_err ec_GFp_pt_is_inf_jac(const mp_int *px, const mp_int *py,
101 /* Sets P(px, py, pz) to be the point at infinity. Uses Jacobian
103 mp_err ec_GFp_pt_set_inf_jac(mp_int *px, mp_int *py, mp_int *pz);
105 /* Computes R = P + Q where R is (rx, ry, rz), P is (px, py, pz) and Q is
107 mp_err ec_GFp_pt_add_jac_aff(const mp_int *px, const mp_int *py,
113 mp_err ec_GFp_pt_dbl_jac(const mp_int *px, const mp_int *py,
118 /* Computes R = nP where R is (rx, ry) and P is (px, py). The parameters
121 mp_err ec_GFp_pt_mul_jac(const mp_int *n, const mp_int *px,
132 ec_GFp_pts_mul_jac(const mp_int *k1, const mp_int *k2, const mp_int *px,
145 ec_GFp_pt_mul_jm_wNAF(const mp_int *n, const mp_int *px, const mp_int *py,