Home
last modified time | relevance | path

Searched defs:mp_isodd (Results 1 – 5 of 5) sorted by relevance

/external/dropbear/libtommath/
Dtommath.h223 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO) macro
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_math.h497 #define mp_isodd(a) (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_… macro
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
Dlibtommath.c124 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO) macro
/external/wpa_supplicant_8/src/tls/
Dlibtommath.c124 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO) macro
/external/dropbear/libtommath/mtest/
Dmpi.c1887 int mp_isodd(mp_int *a) in mp_isodd() function