Home | History | Annotate | Download | only in bn

Lines Matching defs:BN_abs_is_word

404 /* Note that BN_abs_is_word
405 #define BN_abs_is_word(a,w) ((((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) || \
408 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
409 #define BN_is_word(a,w) (BN_abs_is_word((a),(w)) && (!(w) || !(a)->neg))