Lines Matching refs:P256_POINT
49 } P256_POINT; typedef
123 void ecp_nistz256_scatter_w5(P256_POINT *val,
124 const P256_POINT *in_t, int idx);
125 void ecp_nistz256_gather_w5(P256_POINT *val,
126 const P256_POINT *in_t, int idx);
249 void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a);
250 void ecp_nistz256_point_add(P256_POINT *r,
251 const P256_POINT *a, const P256_POINT *b);
252 void ecp_nistz256_point_add_affine(P256_POINT *r,
253 const P256_POINT *a,
257 static void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a) in ecp_nistz256_point_double()
303 static void ecp_nistz256_point_add(P256_POINT *r, in ecp_nistz256_point_add()
304 const P256_POINT *a, const P256_POINT *b) in ecp_nistz256_point_add()
433 static void ecp_nistz256_point_add_affine(P256_POINT *r, in ecp_nistz256_point_add_affine()
434 const P256_POINT *a, in ecp_nistz256_point_add_affine()
608 P256_POINT *r, in ecp_nistz256_windowed_mul()
620 P256_POINT *temp; /* place for 5 temporary points */ in ecp_nistz256_windowed_mul()
622 P256_POINT (*table)[16] = NULL; in ecp_nistz256_windowed_mul()
625 if ((num * 16 + 6) > OPENSSL_MALLOC_MAX_NELEMS(P256_POINT) in ecp_nistz256_windowed_mul()
627 OPENSSL_malloc((num * 16 + 5) * sizeof(P256_POINT) + 64)) == NULL in ecp_nistz256_windowed_mul()
634 temp = (P256_POINT *)(table + num); in ecp_nistz256_windowed_mul()
637 P256_POINT *row = table[i]; in ecp_nistz256_windowed_mul()
958 P256_POINT p; in ecp_nistz256_points_mul()
1131 P256_POINT *out = &t.p; in ecp_nistz256_points_mul()