Lines Matching refs:P256_POINT
57 } P256_POINT;
132 void ecp_nistz256_scatter_w5(P256_POINT *val,
133 const P256_POINT *in_t, int idx);
134 void ecp_nistz256_gather_w5(P256_POINT *val,
135 const P256_POINT *in_t, int idx);
258 void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a);
259 void ecp_nistz256_point_add(P256_POINT *r,
260 const P256_POINT *a, const P256_POINT *b);
261 void ecp_nistz256_point_add_affine(P256_POINT *r,
262 const P256_POINT *a,
266 static void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a)
312 static void ecp_nistz256_point_add(P256_POINT *r,
313 const P256_POINT *a, const P256_POINT *b)
442 static void ecp_nistz256_point_add_affine(P256_POINT *r,
443 const P256_POINT *a,
617 P256_POINT *r,
629 P256_POINT *temp; /* place for 5 temporary points */
631 P256_POINT (*table)[16] = NULL;
634 if ((num * 16 + 6) > OPENSSL_MALLOC_MAX_NELEMS(P256_POINT)
636 OPENSSL_malloc((num * 16 + 5) * sizeof(P256_POINT) + 64)) == NULL
645 temp = (P256_POINT *)(table + num);
648 P256_POINT *row = table[i];
971 P256_POINT p;
1148 P256_POINT *out = &t.p;