/external/dropbear/libtommath/ |
bn_mp_invmod_slow.c | 72 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) { 97 if ((res = mp_sub (&D, &x, &D)) != MP_OKAY) { 113 if ((res = mp_sub (&u, &v, &u)) != MP_OKAY) { 117 if ((res = mp_sub (&A, &C, &A)) != MP_OKAY) { 121 if ((res = mp_sub (&B, &D, &B)) != MP_OKAY) { 126 if ((res = mp_sub (&v, &u, &v)) != MP_OKAY) { 130 if ((res = mp_sub (&C, &A, &C)) != MP_OKAY) { 134 if ((res = mp_sub (&D, &B, &D)) != MP_OKAY) { 160 if ((res = mp_sub(&C, b, &C)) != MP_OKAY) {
|
bn_fast_mp_invmod.c | 67 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) { 86 if ((res = mp_sub (&D, &x, &D)) != MP_OKAY) { 99 if ((res = mp_sub (&u, &v, &u)) != MP_OKAY) { 103 if ((res = mp_sub (&B, &D, &B)) != MP_OKAY) { 108 if ((res = mp_sub (&v, &u, &v)) != MP_OKAY) { 112 if ((res = mp_sub (&D, &B, &D)) != MP_OKAY) {
|
bn_mp_submod.c | 30 if ((res = mp_sub (a, b, &t)) != MP_OKAY) {
|
bn_mp_toom_mul.c | 175 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) { 179 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) { 191 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) { 194 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) { 198 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) { 202 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) { 209 if ((res = mp_sub(&w1, &tmp1, &w1)) != MP_OKAY) { 216 if ((res = mp_sub(&w3, &tmp1, &w3)) != MP_OKAY) { 223 if ((res = mp_sub(&w2, &w1, &w2)) != MP_OKAY) { 226 if ((res = mp_sub(&w2, &w3, &w2)) != MP_OKAY) [all...] |
bn_mp_toom_sqr.c | 119 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) { 123 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) { 135 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) { 138 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) { 142 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) { 146 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) { 153 if ((res = mp_sub(&w1, &tmp1, &w1)) != MP_OKAY) { 160 if ((res = mp_sub(&w3, &tmp1, &w3)) != MP_OKAY) { 167 if ((res = mp_sub(&w2, &w1, &w2)) != MP_OKAY) { 170 if ((res = mp_sub(&w2, &w3, &w2)) != MP_OKAY) [all...] |
bn_mp_sub.c | 20 mp_sub (mp_int * a, mp_int * b, mp_int * c) function
|
bn_mp_exteuclid.c | 45 if ((err = mp_sub(&u1, &tmp, &t1)) != MP_OKAY) { goto _ERR; } 47 if ((err = mp_sub(&u2, &tmp, &t2)) != MP_OKAY) { goto _ERR; } 49 if ((err = mp_sub(&u3, &tmp, &t3)) != MP_OKAY) { goto _ERR; }
|
bn_mp_n_root.c | 77 if ((res = mp_sub (&t2, a, &t2)) != MP_OKAY) { 92 if ((res = mp_sub (&t1, &t3, &t2)) != MP_OKAY) {
|
bn_mp_reduce.c | 71 if ((res = mp_sub (x, &q, x)) != MP_OKAY) {
|
bn_mp_div.c | 61 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) || 176 if ((res = mp_sub (&x, &y, &x)) != MP_OKAY) { 238 if ((res = mp_sub (&x, &t1, &x)) != MP_OKAY) {
|
/external/dropbear/libtomcrypt/src/pk/ecc/ |
ltc_ecc_projective_dbl_point.c | 63 if ((err = mp_sub(R->z, modulus, R->z)) != CRYPT_OK) { goto done; } 67 if ((err = mp_sub(R->x, t1, t2)) != CRYPT_OK) { goto done; } 74 if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK) { goto done; } 82 if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK) { goto done; } 87 if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK) { goto done; } 93 if ((err = mp_sub(R->y, modulus, R->y)) != CRYPT_OK) { goto done; } 114 if ((err = mp_sub(R->x, R->y, R->x)) != CRYPT_OK) { goto done; } 119 if ((err = mp_sub(R->x, R->y, R->x)) != CRYPT_OK) { goto done; } 125 if ((err = mp_sub(R->y, R->x, R->y)) != CRYPT_OK) { goto done; } 133 if ((err = mp_sub(R->y, t2, R->y)) != CRYPT_OK) { goto done; [all...] |
ltc_ecc_projective_add_point.c | 51 if ((err = mp_sub(modulus, Q->y, t1)) != CRYPT_OK) { goto done; } 94 if ((err = mp_sub(y, t1, y)) != CRYPT_OK) { goto done; } 101 if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK) { goto done; } 106 if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK) { goto done; } 109 if ((err = mp_sub(x, t2, x)) != CRYPT_OK) { goto done; } 116 if ((err = mp_sub(t2, modulus, t2)) != CRYPT_OK) { goto done; } 121 if ((err = mp_sub(t2, modulus, t2)) != CRYPT_OK) { goto done; } 152 if ((err = mp_sub(x, t2, x)) != CRYPT_OK) { goto done; } 158 if ((err = mp_sub(t2, x, t2)) != CRYPT_OK) { goto done; } 163 if ((err = mp_sub(t2, x, t2)) != CRYPT_OK) { goto done; [all...] |
ecc_import.c | 48 if ((err = mp_sub(t1, t2, t1)) != CRYPT_OK) { goto error; } 59 if ((err = mp_sub(t1, prime, t1)) != CRYPT_OK) { goto error; }
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/integer/ |
der_decode_integer.c | 95 if (mp_2expt(tmp, mp_count_bits(num)) != CRYPT_OK || mp_sub(num, tmp, num) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_exptmod.c | 72 if ((err = mp_sub(tmpa, tmpb, tmp)) != CRYPT_OK) { goto error; }
|
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 119 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) { 138 if ((res = mp_sub (&D, &x, &D)) != MP_OKAY) { 151 if ((res = mp_sub (&u, &v, &u)) != MP_OKAY) { 155 if ((res = mp_sub (&B, &D, &B)) != MP_OKAY) { 160 if ((res = mp_sub (&v, &u, &v)) != MP_OKAY) { 164 if ((res = mp_sub (&D, &B, &D)) != MP_OKAY) { 7475 mp_sub (mp_int * a, mp_int * b, mp_int * c) function [all...] |
/external/dropbear/libtomcrypt/src/pk/katja/ |
katja_exptmod.c | 72 if ((err = mp_sub(tmpa, tmpb, tmp)) != CRYPT_OK) { goto error; }
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
bignum.c | 167 if (mp_sub((mp_int *) a, (mp_int *) b, (mp_int *) c) != MP_OKAY) {
|
libtommath.c | 443 static int mp_sub (mp_int * a, mp_int * b, mp_int * c) function 808 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) { 833 if ((res = mp_sub (&D, &x, &D)) != MP_OKAY) { 849 if ((res = mp_sub (&u, &v, &u)) != MP_OKAY) { 853 if ((res = mp_sub (&A, &C, &A)) != MP_OKAY) { 857 if ((res = mp_sub (&B, &D, &B)) != MP_OKAY) { 862 if ((res = mp_sub (&v, &u, &v)) != MP_OKAY) { 866 if ((res = mp_sub (&C, &A, &C)) != MP_OKAY) { 870 if ((res = mp_sub (&D, &B, &D)) != MP_OKAY) { 896 if ((res = mp_sub(&C, b, &C)) != MP_OKAY) [all...] |
/external/wpa_supplicant_8/src/tls/ |
bignum.c | 161 if (mp_sub((mp_int *) a, (mp_int *) b, (mp_int *) c) != MP_OKAY) {
|
libtommath.c | 451 static int mp_sub (mp_int * a, mp_int * b, mp_int * c) function 816 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) { 841 if ((res = mp_sub (&D, &x, &D)) != MP_OKAY) { 857 if ((res = mp_sub (&u, &v, &u)) != MP_OKAY) { 861 if ((res = mp_sub (&A, &C, &A)) != MP_OKAY) { 865 if ((res = mp_sub (&B, &D, &B)) != MP_OKAY) { 870 if ((res = mp_sub (&v, &u, &v)) != MP_OKAY) { 874 if ((res = mp_sub (&C, &A, &C)) != MP_OKAY) { 878 if ((res = mp_sub (&D, &B, &D)) != MP_OKAY) { 904 if ((res = mp_sub(&C, b, &C)) != MP_OKAY) [all...] |
/external/dropbear/libtommath/demo/ |
timing.c | 138 DO(mp_sub(&a, &b, &c)); 264 mp_sub(&e, &b, &b);
|
/external/dropbear/ |
gendss.c | 125 if (mp_sub(&tempX, &tempC, &tempP) != MP_OKAY) {
|
/external/dropbear/libtommath/mtest/ |
mpi.c | 955 /* {{{ mp_sub(a, b, c) */ 958 mp_sub(a, b, c) 963 mp_err mp_sub(mp_int *a, mp_int *b, mp_int *c) function 1037 } /* end mp_sub() */ 1485 (res = mp_sub(&t, a, &t)) != MP_OKAY) 1499 if((res = mp_sub(&x, &t, &x)) != MP_OKAY) 1564 if((res = mp_sub(a, b, c)) != MP_OKAY) [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_math.h | 472 #define mp_sub(a, b, c) ltc_mp.sub(a, b, c) macro
|