• Home
  • Raw
  • Download

Lines Matching defs:w

114 static void ec_mod(MPI w, struct mpi_ec_ctx *ec)  in ec_mod()
122 static void ec_addm(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_addm()
128 static void ec_subm(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ec) in ec_subm()
136 static void ec_mulm(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_mulm()
143 static void ec_mul2(MPI w, MPI u, struct mpi_ec_ctx *ctx) in ec_mul2()
149 static void ec_powm(MPI w, const MPI b, const MPI e, in ec_powm()
160 static void ec_pow2(MPI w, const MPI b, struct mpi_ec_ctx *ctx) in ec_pow2()
171 static void ec_pow3(MPI w, const MPI b, struct mpi_ec_ctx *ctx) in ec_pow3()
199 static void ec_addm_25519(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_addm_25519()
221 static void ec_subm_25519(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_subm_25519()
242 static void ec_mulm_25519(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_mulm_25519()
291 static void ec_mul2_25519(MPI w, MPI u, struct mpi_ec_ctx *ctx) in ec_mul2_25519()
296 static void ec_pow2_25519(MPI w, const MPI b, struct mpi_ec_ctx *ctx) in ec_pow2_25519()
306 static void ec_addm_448(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_addm_448()
326 static void ec_subm_448(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_subm_448()
346 static void ec_mulm_448(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx) in ec_mulm_448()
443 static void ec_mul2_448(MPI w, MPI u, struct mpi_ec_ctx *ctx) in ec_mul2_448()
448 static void ec_pow2_448(MPI w, const MPI b, struct mpi_ec_ctx *ctx) in ec_pow2_448()
1404 MPI x, y, w; in mpi_ec_curve_point() local