Lines Matching refs:powerbufLen
41 * the possible overflow in the computation of powerbufLen in
611 int powerbufLen = 0;
630 /* Prevent overflowing the powerbufLen computation below */
717 powerbufLen += top * sizeof(mont->N.d[0]);
727 powerbufLen += sizeof(m->d[0]) * (top * numPowers +
731 if (powerbufLen < 3072)
733 alloca(powerbufLen + MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH);
737 OPENSSL_malloc(powerbufLen + MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH))
742 memset(powerbuf, 0, powerbufLen);
745 if (powerbufLen < 3072)
1148 OPENSSL_cleanse(powerbuf, powerbufLen);