Searched defs:MP_YES (Results 1 - 6 of 6) sorted by relevance

/external/dropbear/libtommath/mtest/
H A Dmpi.h41 #define MP_YES 0 /* yes (boolean result) */ macro
/external/dropbear/libtommath/
H A Dtommath.h147 #define MP_YES 1 /* yes response */ macro
221 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
222 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
223 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Dlibtommath.c94 #define MP_YES 1 /* yes response */ macro
122 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
123 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
124 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
629 if (mp_reduce_is_2k_l(P) == MP_YES) {
1650 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2;
1654 d->sign = (mp_iszero(d) == MP_YES) ? MP_ZPOS : n;
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c102 #define MP_YES 1 /* yes response */ macro
130 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
131 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
132 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
637 if (mp_reduce_is_2k_l(P) == MP_YES) {
1658 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2;
1662 d->sign = (mp_iszero(d) == MP_YES) ? MP_ZPOS : n;
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c102 #define MP_YES 1 /* yes response */ macro
130 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
131 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
132 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
637 if (mp_reduce_is_2k_l(P) == MP_YES) {
1658 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2;
1662 d->sign = (mp_iszero(d) == MP_YES) ? MP_ZPOS : n;
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c102 #define MP_YES 1 /* yes response */ macro
130 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
131 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
132 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
637 if (mp_reduce_is_2k_l(P) == MP_YES) {
1658 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2;
1662 d->sign = (mp_iszero(d) == MP_YES) ? MP_ZPOS : n;

Completed in 1322 milliseconds