OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mp_isodd
(Results
1 - 5
of
5
) sorted by null
/external/dropbear/libtommath/
tommath.h
223
#define
mp_isodd
(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
macro
/external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h
497
#define
mp_isodd
(a) (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
macro
/external/wpa_supplicant/
libtommath.c
101
#define
mp_isodd
(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
macro
607
if (
mp_isodd
(P) == 1 || dr != 0) {
681
if (
mp_isodd
(b) == 1) {
756
if (
mp_isodd
(&A) == 1 ||
mp_isodd
(&B) == 1) {
781
if (
mp_isodd
(&C) == 1 ||
mp_isodd
(&D) == 1) {
[
all
...]
/external/dropbear/libtommath/mtest/
mpi.c
1887
int
mp_isodd
(mp_int *a)
function
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c
124
#define
mp_isodd
(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
macro
651
if (
mp_isodd
(P) == 1 || dr != 0) {
726
if (
mp_isodd
(b) == 1) {
803
if (
mp_isodd
(&A) == 1 ||
mp_isodd
(&B) == 1) {
828
if (
mp_isodd
(&C) == 1 ||
mp_isodd
(&D) == 1) {
[
all
...]
Completed in 898 milliseconds