OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:felem_mul
(Results
1 - 3
of
3
) sorted by null
/system/core/libmincrypt/
p256_ec.c
524
/*
felem_mul
sets out=in*in2.
529
static void
felem_mul
(felem out, const felem in, const felem in2) {
function
616
felem_mul
(ftmp, in, ftmp); /* 2^2 - 2^0 */
620
felem_mul
(ftmp, ftmp, e2); /* 2^4 - 2^0 */
626
felem_mul
(ftmp, ftmp, e4); /* 2^8 - 2^0 */
631
felem_mul
(ftmp, ftmp, e8); /* 2^16 - 2^0 */
636
felem_mul
(ftmp, ftmp, e16); /* 2^32 - 2^0 */
642
felem_mul
(ftmp, ftmp, in); /* 2^64 - 2^32 + 2^0 */
647
felem_mul
(ftmp2, e64, e32); /* 2^64 - 2^0 */
651
felem_mul
(ftmp2, ftmp2, e16); /* 2^80 - 2^0 *
[
all
...]
/external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_lcl.h
442
void (*
felem_mul
)(void *out, const void *in1, const void *in2),
/external/openssl/crypto/ec/
ec_lcl.h
443
void (*
felem_mul
)(void *out, const void *in1, const void *in2),
Completed in 5530 milliseconds