OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MP_NO
(Results
1 - 4
of
4
) sorted by null
/external/dropbear/libtommath/mtest/
mpi.h
42
#define
MP_NO
-1 /* no (boolean result) */
/external/dropbear/libtommath/
tommath.h
148
#define
MP_NO
0 /* no response */
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/
libtommath.c
72
#define
MP_NO
0 /* no response */
99
#define mp_iszero(a) (((a)->used == 0) ? MP_YES :
MP_NO
)
100
#define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES :
MP_NO
)
101
#define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES :
MP_NO
)
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c
95
#define
MP_NO
0 /* no response */
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
)
[
all
...]
Completed in 3493 milliseconds