Symbol: P256_POINT
crypto/openssl/crypto/ec/ecp_nistz256.c
1120
P256_POINT *out = &t.p;
crypto/openssl/crypto/ec/ecp_nistz256.c
123
void ecp_nistz256_scatter_w5(P256_POINT *val,
crypto/openssl/crypto/ec/ecp_nistz256.c
124
const P256_POINT *in_t, int idx);
crypto/openssl/crypto/ec/ecp_nistz256.c
125
void ecp_nistz256_gather_w5(P256_POINT *val,
crypto/openssl/crypto/ec/ecp_nistz256.c
126
const P256_POINT *in_t, int idx);
crypto/openssl/crypto/ec/ecp_nistz256.c
249
void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a);
crypto/openssl/crypto/ec/ecp_nistz256.c
250
void ecp_nistz256_point_add(P256_POINT *r,
crypto/openssl/crypto/ec/ecp_nistz256.c
251
const P256_POINT *a, const P256_POINT *b);
crypto/openssl/crypto/ec/ecp_nistz256.c
252
void ecp_nistz256_point_add_affine(P256_POINT *r,
crypto/openssl/crypto/ec/ecp_nistz256.c
253
const P256_POINT *a,
crypto/openssl/crypto/ec/ecp_nistz256.c
257
static void ecp_nistz256_point_double(P256_POINT *r, const P256_POINT *a)
crypto/openssl/crypto/ec/ecp_nistz256.c
303
static void ecp_nistz256_point_add(P256_POINT *r,
crypto/openssl/crypto/ec/ecp_nistz256.c
304
const P256_POINT *a, const P256_POINT *b)
crypto/openssl/crypto/ec/ecp_nistz256.c
433
static void ecp_nistz256_point_add_affine(P256_POINT *r,
crypto/openssl/crypto/ec/ecp_nistz256.c
434
const P256_POINT *a,
crypto/openssl/crypto/ec/ecp_nistz256.c
606
P256_POINT *r,
crypto/openssl/crypto/ec/ecp_nistz256.c
618
P256_POINT *temp; /* place for 5 temporary points */
crypto/openssl/crypto/ec/ecp_nistz256.c
620
P256_POINT(*table)
crypto/openssl/crypto/ec/ecp_nistz256.c
624
if ((num * 16 + 6) > OPENSSL_MALLOC_MAX_NELEMS(P256_POINT)
crypto/openssl/crypto/ec/ecp_nistz256.c
625
|| (table_storage = OPENSSL_malloc((num * 16 + 5) * sizeof(P256_POINT) + 64)) == NULL
crypto/openssl/crypto/ec/ecp_nistz256.c
631
temp = (P256_POINT *)(table + num);
crypto/openssl/crypto/ec/ecp_nistz256.c
634
P256_POINT *row = table[i];
crypto/openssl/crypto/ec/ecp_nistz256.c
949
P256_POINT p;
crypto/openssl/crypto/ec/ecp_sm2p256.c
178
static void ecp_sm2p256_point_double(P256_POINT *R, const P256_POINT *P)
crypto/openssl/crypto/ec/ecp_sm2p256.c
214
static void ecp_sm2p256_point_add_affine(P256_POINT *R, const P256_POINT *P,
crypto/openssl/crypto/ec/ecp_sm2p256.c
245
P256_POINT K;
crypto/openssl/crypto/ec/ecp_sm2p256.c
277
static void ecp_sm2p256_point_add(P256_POINT *R, const P256_POINT *P,
crypto/openssl/crypto/ec/ecp_sm2p256.c
278
const P256_POINT *Q)
crypto/openssl/crypto/ec/ecp_sm2p256.c
335
static void ecp_sm2p256_point_G_mul_by_scalar(P256_POINT *R, const BN_ULONG *k)
crypto/openssl/crypto/ec/ecp_sm2p256.c
340
memset(R, 0, sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
370
static void ecp_sm2p256_point_P_mul_by_scalar(P256_POINT *R, const BN_ULONG *k,
crypto/openssl/crypto/ec/ecp_sm2p256.c
375
ALIGN64 P256_POINT precomputed[16];
crypto/openssl/crypto/ec/ecp_sm2p256.c
377
memset(R, 0, sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
402
memcpy(R, &precomputed[index], sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
418
const P256_POINT *P)
crypto/openssl/crypto/ec/ecp_sm2p256.c
449
P256_POINT *r,
crypto/openssl/crypto/ec/ecp_sm2p256.c
458
P256_POINT kP;
crypto/openssl/crypto/ec/ecp_sm2p256.c
460
P256_POINT p;
crypto/openssl/crypto/ec/ecp_sm2p256.c
464
if (num > OPENSSL_MALLOC_MAX_NELEMS(P256_POINT)
crypto/openssl/crypto/ec/ecp_sm2p256.c
470
memset(r, 0, sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
521
P256_POINT p;
crypto/openssl/crypto/ec/ecp_sm2p256.c
566
P256_POINT *out = &t.p;