Lines Matching refs:z3
689 MPI z1, z2, z3;
700 z3 = mpi_new(0);
701 ec_mulm(z3, z2, z1, ctx); /* z3 = z^(-3) mod p */
702 ec_mulm(y, point->y, z3, ctx);
703 mpi_free(z3);
761 #define z3 (result->z)
773 mpi_set_ui(z3, 0);
796 ec_mulm(z3, point->y, point->z, ctx);
797 ec_mul2(z3, z3, ctx);
824 #undef z3
946 #define z3 (result->z)
966 mpi_set(z3, p2->z);
971 mpi_set(z3, p1->z);
1009 mpi_set_ui(z3, 0);
1016 /* z3 = z1 z2 l3 */
1017 ec_mulm(z3, z1, z2, ctx);
1018 ec_mulm(z3, z3, l3, ctx);
1044 #undef z3
1337 MPI z2, z3;
1340 z3 = mpi_alloc_like(ctx->p);
1342 ec_mulm(z3, point->z, z2, ctx);
1345 ec_invm(z3, z3, ctx);
1346 ec_mulm(y1, yy, z3, ctx);
1348 mpi_free(z3);