/external/dropbear/libtommath/ |
bn_mp_karatsuba_mul.c | 62 if (mp_init_size (&x0, B) != MP_OKAY) 64 if (mp_init_size (&x1, a->used - B) != MP_OKAY) 66 if (mp_init_size (&y0, B) != MP_OKAY) 68 if (mp_init_size (&y1, b->used - B) != MP_OKAY) 72 if (mp_init_size (&t1, B * 2) != MP_OKAY) 74 if (mp_init_size (&x0y0, B * 2) != MP_OKAY) 76 if (mp_init_size (&x1y1, B * 2) != MP_OKAY)
|
bn_mp_karatsuba_sqr.c | 39 if (mp_init_size (&x0, B) != MP_OKAY) 41 if (mp_init_size (&x1, a->used - B) != MP_OKAY) 45 if (mp_init_size (&t1, a->used * 2) != MP_OKAY) 47 if (mp_init_size (&t2, a->used * 2) != MP_OKAY) 49 if (mp_init_size (&x0x0, B * 2) != MP_OKAY) 51 if (mp_init_size (&x1x1, (a->used - B) * 2) != MP_OKAY)
|
bn_mp_init_size.c | 19 int mp_init_size (mp_int * a, int size) function
|
bn_mp_div_3.c | 30 if ((res = mp_init_size(&q, a->used)) != MP_OKAY) {
|
bn_s_mp_mul_digs.c | 37 if ((res = mp_init_size (&t, digs)) != MP_OKAY) {
|
bn_s_mp_mul_high_digs.c | 38 if ((res = mp_init_size (&t, a->used + b->used + 1)) != MP_OKAY) {
|
bn_s_mp_sqr.c | 27 if ((res = mp_init_size (&t, 2*pa + 1)) != MP_OKAY) {
|
bn_mp_div_d.c | 74 if ((res = mp_init_size(&q, a->used)) != MP_OKAY) {
|
bn_mp_div.c | 126 if ((res = mp_init_size (&q, a->used + 2)) != MP_OKAY) {
|
tommath.h | 218 int mp_init_size(mp_int *a, int size);
|
bn.tex | 520 int mp_init_size (mp_int * a, int size); 533 if ((result = mp_init_size(&number, 60)) != MP_OKAY) \{ [all...] |
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 3613 int mp_init_size (mp_int * a, int size) function [all...] |
/external/dropbear/libtommath/mtest/ |
mpi.c | 238 return mp_init_size(mp, s_mp_defprec); 270 /* {{{ mp_init_size(mp, prec) */ 273 mp_init_size(mp, prec) 280 mp_err mp_init_size(mp_int *mp, mp_size prec) function 293 } /* end mp_init_size() */ 1471 if((res = mp_init_size(&t, USED(a))) != MP_OKAY) [all...] |
mpi.h | 92 mp_err mp_init_size(mp_int *mp, mp_size prec);
|
/external/wpa_supplicant_8/src/tls/ |
libtommath.c | 185 static int mp_init_size(mp_int * a, int size); 2500 static int mp_init_size (mp_int * a, int size) function [all...] |