/external/dropbear/libtommath/ |
bn_mp_sqrmod.c | 29 if ((res = mp_sqr (a, &t)) != MP_OKAY) {
|
bn_mp_expt_d.c | 33 if ((res = mp_sqr (c, c)) != MP_OKAY) {
|
bn_mp_sqr.c | 20 mp_sqr (mp_int * a, mp_int * b) function
|
bn_mp_karatsuba_sqr.c | 78 if (mp_sqr (&x0, &x0x0) != MP_OKAY) 80 if (mp_sqr (&x1, &x1x1) != MP_OKAY) 86 if (mp_sqr (&t1, &t1) != MP_OKAY)
|
bn_s_mp_exptmod.c | 109 if ((err = mp_sqr (&M[1 << (winsize - 1)], 173 if ((err = mp_sqr (&res, &res)) != MP_OKAY) { 190 if ((err = mp_sqr (&res, &res)) != MP_OKAY) { 217 if ((err = mp_sqr (&res, &res)) != MP_OKAY) {
|
bn_mp_toom_sqr.c | 50 if ((res = mp_sqr(&a0, &w0)) != MP_OKAY) { 55 if ((res = mp_sqr(&a2, &w4)) != MP_OKAY) { 73 if ((res = mp_sqr(&tmp1, &w1)) != MP_OKAY) { 91 if ((res = mp_sqr(&tmp1, &w3)) != MP_OKAY) { 103 if ((res = mp_sqr(&tmp1, &w2)) != MP_OKAY) {
|
bn_mp_exptmod_fast.c | 175 if ((err = mp_sqr (&M[1 << (winsize - 1)], &M[1 << (winsize - 1)])) != MP_OKAY) { 228 if ((err = mp_sqr (&res, &res)) != MP_OKAY) { 245 if ((err = mp_sqr (&res, &res)) != MP_OKAY) { 272 if ((err = mp_sqr (&res, &res)) != MP_OKAY) {
|
bn_mp_is_square.c | 97 if ((res = mp_sqr(&t,&t)) != MP_OKAY) {
|
tommath.h | 320 int mp_sqr(mp_int *a, mp_int *b);
|
bn.tex | [all...] |
/external/dropbear/libtomcrypt/src/pk/ecc/ |
ltc_ecc_map.c | 53 if ((err = mp_sqr(t1, t2)) != CRYPT_OK) { goto done; }
|
ltc_ecc_projective_dbl_point.c | 55 if ((err = mp_sqr(R->z, t1)) != CRYPT_OK) { goto done; } 96 if ((err = mp_sqr(R->y, R->y)) != CRYPT_OK) { goto done; } 99 if ((err = mp_sqr(R->y, t2)) != CRYPT_OK) { goto done; } 111 if ((err = mp_sqr(t1, R->x)) != CRYPT_OK) { goto done; }
|
ecc_import.c | 40 if ((err = mp_sqr(key->pubkey.y, t1)) != CRYPT_OK) { goto error; } 43 if ((err = mp_sqr(key->pubkey.x, t2)) != CRYPT_OK) { goto error; }
|
ltc_ecc_projective_add_point.c | 67 if ((err = mp_sqr(Q->z, t1)) != CRYPT_OK) { goto done; } 81 if ((err = mp_sqr(z, t1)) != CRYPT_OK) { goto done; } 139 if ((err = mp_sqr(x, x)) != CRYPT_OK) { goto done; } 149 if ((err = mp_sqr(y, x)) != CRYPT_OK) { goto done; }
|
/external/dropbear/libtommath/etc/ |
mersenne.c | 38 if ((res = mp_sqr (&u, &u)) != MP_OKAY) {
|
tune.c | 106 mp_sqr(&a,&b);
|
/external/dropbear/libtommath/mtest/ |
mpi.h | 129 mp_err mp_sqr(mp_int *a, mp_int *b); 131 #define mp_sqr(a, b) mp_mul(a, a, b) macro
|
mtest.c | 173 mp_sqr(&a, &b);
|
mpi.c | 1107 /* {{{ mp_sqr(a, b) */ 1110 mp_err mp_sqr(mp_int *a, mp_int *b) function 1126 } /* end mp_sqr() */ 1484 if((res = mp_sqr(&t, &t)) != MP_OKAY || 1609 if((res = mp_sqr(a, c)) != MP_OKAY [all...] |
/external/dropbear/libtommath/demo/ |
demo.c | 152 mp_sqr(&a, &a); 320 mp_sqr(&b, &b); 369 mp_sqr(&b, &b); 372 mp_sqr(&c, &c); 583 mp_sqr(&c, &c);
|
timing.c | 190 DO(mp_sqr(&a, &b));
|
/external/wpa_supplicant_8/src/tls/ |
libtommath.c | 179 static int mp_sqr(mp_int * a, mp_int * b); 2112 static int mp_sqr (mp_int * a, mp_int * b) function [all...] |
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 7283 mp_sqr (mp_int * a, mp_int * b) function [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_math.h | 476 #define mp_sqr(a, b) ltc_mp.sqr(a, b) macro
|
/external/dropbear/libtomcrypt/src/math/ |
ltm_desc.c | 259 return mpi_to_ltc_error(mp_sqr(a, b));
|