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

/asus-wl-520gu-7.0.1.45/src/router/shared/bcmcrypto/
H A Dbn.h321 /* Note that BN_abs_is_word does not work reliably for w == 0 */
322 #define BN_abs_is_word(a,w) (((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) macro
323 #define BN_is_zero(a) (((a)->top == 0) || BN_abs_is_word(a,0))
324 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
325 #define BN_is_word(a,w) ((w) ? BN_abs_is_word((a),(w)) && !(a)->neg : \
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/bcmcrypto/
H A Dbn.h321 /* Note that BN_abs_is_word does not work reliably for w == 0 */
322 #define BN_abs_is_word(a,w) (((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) macro
323 #define BN_is_zero(a) (((a)->top == 0) || BN_abs_is_word(a,0))
324 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
325 #define BN_is_word(a,w) ((w) ? BN_abs_is_word((a),(w)) && !(a)->neg : \
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/
H A Dbn.h300 /* Note that BN_abs_is_word does not work reliably for w == 0 */
301 #define BN_abs_is_word(a,w) (((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) macro
302 #define BN_is_zero(a) (((a)->top == 0) || BN_abs_is_word(a,0))
303 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
304 #define BN_is_word(a,w) ((w) ? BN_abs_is_word((a),(w)) && !(a)->neg : \
/asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/
H A Dbn.h354 /* Note that BN_abs_is_word didn't work reliably for w == 0 until 0.9.8 */
355 #define BN_abs_is_word(a,w) ((((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) || \ macro
358 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
359 #define BN_is_word(a,w) (BN_abs_is_word((a),(w)) && (!(w) || !(a)->neg))

Completed in 44 milliseconds