HomeSort by relevance Sort by last modified time
    Searched refs:mp_isodd (Results 1 - 13 of 13) sorted by null

  /external/dropbear/libtommath/
bn_mp_invmod.c 28 if (mp_isodd (b) == 1) {
bn_mp_invmod_slow.c 67 if (mp_isodd (&A) == 1 || mp_isodd (&B) == 1) {
92 if (mp_isodd (&C) == 1 || mp_isodd (&D) == 1) {
bn_fast_mp_invmod.c 66 if (mp_isodd (&B) == 1) {
84 if (mp_isodd (&D) == 1) {
bn_mp_exptmod.c 92 if (mp_isodd (P) == 1 || dr != 0) {
tommath.h 223 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO) macro
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_projective_dbl_point.c 102 if (mp_isodd(t2)) {
ltc_ecc_projective_add_point.c 176 if (mp_isodd(y)) {
  /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/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/dropbear/libtommath/mtest/
mpi.h 165 int mp_isodd(mp_int *a);
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...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 118 if (mp_isodd (&B) == 1) {
136 if (mp_isodd (&D) == 1) {
    [all...]

Completed in 262 milliseconds