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

/freebsd-10.1-release/crypto/openssl/crypto/bn/
H A Dbn_exp.c907 BN_ULONG w, next_w; local
983 next_w = w * w;
984 if ((next_w / w) != w) { /* overflow */
993 next_w = 1;
995 w = next_w;
1003 next_w = w * a;
1004 if ((next_w / a) != w) { /* overflow */
1013 next_w = a;
1015 w = next_w;

Completed in 22 milliseconds