Home | History | Annotate | Download | only in ec

Lines Matching defs:y_in

976 /* point_double calculates 2*(x_in, y_in, z_in)
982 * while x_out == y_in is not (maybe this works, but it's not tested). */
984 const felem x_in, const felem y_in, const felem z_in) {
1000 felem_square(tmp, y_in);
1034 felem_assign(ftmp, y_in);
1063 const smallfelem y_in, const smallfelem z_in) {
1068 smallfelem_expand(felem_y_in, y_in);
1652 felem z1, z2, x_in, y_in;
1661 !BN_to_felem(y_in, &point->Y) ||
1677 felem_mul(tmp, y_in, z1);
1678 felem_reduce(y_in, tmp);
1679 felem_contract(y_out, y_in);
1726 smallfelem x_in, y_in, z_in;
1843 felem_contract(y_in, y_out);
1846 !smallfelem_to_BN(y, y_in) ||