OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Big2
(Results
1 - 2
of
2
) sorted by null
/external/vboot_reference/host/lib/
util_misc.c
37
BIGNUM *Big1 = NULL, *
Big2
= NULL, *Big32 = NULL, *BigMinus1 = NULL;
65
NEW_BIGNUM(
Big2
);
80
BN_set_word(
Big2
, 2L);
82
BN_sub(BigMinus1, Big1,
Big2
);
84
BN_exp(B,
Big2
, Big32, bn_ctx); /* B = 2^32 */
95
BN_exp(R,
Big2
, NnumBits, bn_ctx);
132
BN_free(
Big2
);
/external/vboot_reference/utility/
dumpRSAPublicKey.c
44
BIGNUM *Big1 = NULL, *
Big2
= NULL, *Big32 = NULL, *BigMinus1 = NULL;
60
Big2
= BN_new();
73
BN_set_word(
Big2
, 2L);
75
BN_sub(BigMinus1, Big1,
Big2
);
78
BN_exp(B,
Big2
, Big32, bn_ctx); /* B = 2^32 */
89
BN_exp(R,
Big2
, NnumBits, bn_ctx);
124
BN_free(
Big2
);
Completed in 1579 milliseconds