Searched refs:window_val (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_mult.c190 int window_val; local
222 window_val = scalar->d[0] & mask;
224 while ((window_val != 0) || (j + w + 1 < len)) /* if j+w+1 >= len, window_val will not increase */
228 /* 0 <= window_val <= 2^(w+1) */
230 if (window_val & 1)
232 /* 0 < window_val < 2^(w+1) */
234 if (window_val & bit)
236 digit = window_val - next_bit; /* -2^w < digit < 0 */
242 * no new bits will be added into window_val,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ec/
H A Dec_mult.c187 int window_val; local
232 window_val = scalar->d[0] & mask;
234 while ((window_val != 0) || (j + w + 1 < len)) { /* if j+w+1 >= len,
235 * window_val will not
239 /* 0 <= window_val <= 2^(w+1) */
241 if (window_val & 1) {
242 /* 0 < window_val < 2^(w+1) */
244 if (window_val & bit) {
245 digit = window_val - next_bit; /* -2^w < digit < 0 */
251 * bits will be added into window_val, s
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ec/
H A Dec_mult.c187 int window_val; local
232 window_val = scalar->d[0] & mask;
234 while ((window_val != 0) || (j + w + 1 < len)) { /* if j+w+1 >= len,
235 * window_val will not
239 /* 0 <= window_val <= 2^(w+1) */
241 if (window_val & 1) {
242 /* 0 < window_val < 2^(w+1) */
244 if (window_val & bit) {
245 digit = window_val - next_bit; /* -2^w < digit < 0 */
251 * bits will be added into window_val, s
[all...]

Completed in 49 milliseconds