OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:P256_POINT
(Results
1 - 3
of
3
) sorted by null
/external/boringssl/src/crypto/fipsmodule/ec/
p256-x86_64.h
66
// A
P256_POINT
represents a P-256 point in Jacobian coordinates.
71
}
P256_POINT
;
83
void ecp_nistz256_select_w5(
P256_POINT
*val, const
P256_POINT
in_t[16],
93
void ecp_nistz256_point_double(
P256_POINT
*r, const
P256_POINT
*a);
96
void ecp_nistz256_point_add(
P256_POINT
*r, const
P256_POINT
*a,
97
const
P256_POINT
*b);
102
void ecp_nistz256_point_add_affine(
P256_POINT
*r, const P256_POINT *a
[
all
...]
p256-x86_64_test.cc
43
alignas(64)
P256_POINT
table[16];
51
P256_POINT
val;
54
P256_POINT
expected;
140
static bool PointToAffine(P256_POINT_AFFINE *out, const
P256_POINT
*in) {
197
const P256_POINT_AFFINE *expected, const
P256_POINT
*actual) {
198
// There are multiple representations of the same |
P256_POINT
|, so convert to
300
P256_POINT
a, b;
311
P256_POINT
ret;
p256-x86_64.c
212
static int ecp_nistz256_windowed_mul(const EC_GROUP *group,
P256_POINT
*r,
221
// A |
P256_POINT
| is (3 * 32) = 96 bytes, and the 64-byte alignment should
224
alignas(64)
P256_POINT
table[16];
232
P256_POINT
*row = table;
258
alignas(32)
P256_POINT
h;
317
P256_POINT
p;
364
P256_POINT
*out = &t.p;
Completed in 88 milliseconds