Home
last modified time | relevance | path

Searched refs:numPowers (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/crypto/bn/
Dexponentiation.c871 int numPowers; in BN_mod_exp_mont_consttime() local
947 numPowers = 1 << window; in BN_mod_exp_mont_consttime()
950 (top * numPowers + ((2 * top) > numPowers ? (2 * top) : numPowers)); in BN_mod_exp_mont_consttime()
973 tmp.d = (BN_ULONG *)(powerbuf + sizeof(m->d[0]) * top * numPowers); in BN_mod_exp_mont_consttime()
1131 if (!copy_to_prebuf(&tmp, top, powerbuf, 0, numPowers) || in BN_mod_exp_mont_consttime()
1132 !copy_to_prebuf(&am, top, powerbuf, 1, numPowers)) { in BN_mod_exp_mont_consttime()
1143 !copy_to_prebuf(&tmp, top, powerbuf, 2, numPowers)) { in BN_mod_exp_mont_consttime()
1146 for (i = 3; i < numPowers; i++) { in BN_mod_exp_mont_consttime()
1149 !copy_to_prebuf(&tmp, top, powerbuf, i, numPowers)) { in BN_mod_exp_mont_consttime()
1159 if (!copy_from_prebuf(&tmp, top, powerbuf, wvalue, numPowers)) { in BN_mod_exp_mont_consttime()
[all …]