Searched refs:numPowers (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/crypto/bn/ |
D | exponentiation.c | 859 int numPowers; in BN_mod_exp_mont_consttime() local 934 numPowers = 1 << window; in BN_mod_exp_mont_consttime() 937 (top * numPowers + ((2 * top) > numPowers ? (2 * top) : numPowers)); in BN_mod_exp_mont_consttime() 960 tmp.d = (BN_ULONG *)(powerbuf + sizeof(m->d[0]) * top * numPowers); in BN_mod_exp_mont_consttime() 1129 if (!copy_to_prebuf(&tmp, top, powerbuf, 0, numPowers) || in BN_mod_exp_mont_consttime() 1130 !copy_to_prebuf(&am, top, powerbuf, 1, numPowers)) { in BN_mod_exp_mont_consttime() 1141 !copy_to_prebuf(&tmp, top, powerbuf, 2, numPowers)) { in BN_mod_exp_mont_consttime() 1144 for (i = 3; i < numPowers; i++) { in BN_mod_exp_mont_consttime() 1147 !copy_to_prebuf(&tmp, top, powerbuf, i, numPowers)) { in BN_mod_exp_mont_consttime() 1157 if (!copy_from_prebuf(&tmp, top, powerbuf, wvalue, numPowers)) { in BN_mod_exp_mont_consttime() [all …]
|