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
175
static void ecp_sm2p256_point_double(P256_POINT *R, const P256_POINT *P)
crypto/openssl/crypto/ec/ecp_sm2p256.c
211
static void ecp_sm2p256_point_add_affine(P256_POINT *R, const P256_POINT *P,
crypto/openssl/crypto/ec/ecp_sm2p256.c
242
P256_POINT K;
crypto/openssl/crypto/ec/ecp_sm2p256.c
274
static void ecp_sm2p256_point_add(P256_POINT *R, const P256_POINT *P,
crypto/openssl/crypto/ec/ecp_sm2p256.c
275
const P256_POINT *Q)
crypto/openssl/crypto/ec/ecp_sm2p256.c
332
static void ecp_sm2p256_point_G_mul_by_scalar(P256_POINT *R, const BN_ULONG *k)
crypto/openssl/crypto/ec/ecp_sm2p256.c
337
memset(R, 0, sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
367
static void ecp_sm2p256_point_P_mul_by_scalar(P256_POINT *R, const BN_ULONG *k,
crypto/openssl/crypto/ec/ecp_sm2p256.c
372
ALIGN64 P256_POINT precomputed[16];
crypto/openssl/crypto/ec/ecp_sm2p256.c
374
memset(R, 0, sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
399
memcpy(R, &precomputed[index], sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
415
const P256_POINT *P)
crypto/openssl/crypto/ec/ecp_sm2p256.c
446
P256_POINT *r,
crypto/openssl/crypto/ec/ecp_sm2p256.c
455
P256_POINT kP;
crypto/openssl/crypto/ec/ecp_sm2p256.c
457
P256_POINT p;
crypto/openssl/crypto/ec/ecp_sm2p256.c
461
if (num > OPENSSL_MALLOC_MAX_NELEMS(P256_POINT)
crypto/openssl/crypto/ec/ecp_sm2p256.c
467
memset(r, 0, sizeof(P256_POINT));
crypto/openssl/crypto/ec/ecp_sm2p256.c
518
P256_POINT p;
crypto/openssl/crypto/ec/ecp_sm2p256.c
563
P256_POINT *out = &t.p;