HomeSort by relevance Sort by last modified time
    Searched refs:mp_grow (Results 1 - 25 of 26) sorted by null

1 2

  /external/dropbear/libtommath/
bn_mp_2expt.c 32 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) {
bn_mp_copy.c 31 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
bn_mp_grow.c 19 int mp_grow (mp_int * a, int size) function
bn_mp_read_unsigned_bin.c 25 if ((res = mp_grow(a, 2)) != MP_OKAY) {
bn_mp_div_2.c 25 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
bn_mp_lshd.c 30 if ((res = mp_grow (a, a->used + b)) != MP_OKAY) {
bn_mp_mul_2.c 25 if ((res = mp_grow (b, a->used + 1)) != MP_OKAY) {
bn_mp_mul_d.c 28 if ((res = mp_grow (c, a->used + 1)) != MP_OKAY) {
bn_fast_s_mp_mul_digs.c 42 if ((res = mp_grow (c, digs)) != MP_OKAY) {
bn_fast_s_mp_mul_high_digs.c 36 if ((res = mp_grow (c, pa)) != MP_OKAY) {
bn_mp_add_d.c 27 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
bn_mp_dr_reduce.c 44 if ((err = mp_grow (x, m + m)) != MP_OKAY) {
bn_mp_montgomery_reduce.c 40 if ((res = mp_grow (x, digs)) != MP_OKAY) {
bn_mp_mul_2d.c 32 if ((res = mp_grow (c, c->used + b / DIGIT_BIT + 1)) != MP_OKAY) {
bn_mp_sub_d.c 27 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
bn_s_mp_add.c 40 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
bn_s_mp_sub.c 30 if ((res = mp_grow (c, max)) != MP_OKAY) {
bn_fast_mp_montgomery_reduce.c 36 if ((res = mp_grow (x, n->used + 1)) != MP_OKAY) {
bn_fast_s_mp_sqr.c 37 if ((res = mp_grow (b, pa)) != MP_OKAY) {
tommath.h 215 int mp_grow(mp_int *a, int size);
  /external/dropbear/libtommath/etc/
drprime.c 19 mp_grow(&a, sizes[x]);
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c 161 static int mp_grow(mp_int * a, int size);
227 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
305 if ((res = mp_grow (c, max)) != MP_OKAY) {
952 if ((res = mp_grow(a, 2)) != MP_OKAY) {
1124 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1248 static int mp_grow (mp_int * a, int size) function
1325 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1381 if ((res = mp_grow (c, c->used + b / DIGIT_BIT + 1)) != MP_OKAY) {
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 161 static int mp_grow(mp_int * a, int size);
227 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
305 if ((res = mp_grow (c, max)) != MP_OKAY) {
952 if ((res = mp_grow(a, 2)) != MP_OKAY) {
1124 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1248 static int mp_grow (mp_int * a, int size) function
1325 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1381 if ((res = mp_grow (c, c->used + b / DIGIT_BIT + 1)) != MP_OKAY) {
    [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 240 if ((res = mp_grow (x, n->used + 1)) != MP_OKAY) {
422 if ((res = mp_grow (c, digs)) != MP_OKAY) {
527 if ((res = mp_grow (c, pa)) != MP_OKAY) {
630 if ((res = mp_grow (b, pa)) != MP_OKAY) {
743 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) {
894 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
3332 int mp_grow (mp_int * a, int size) function
    [all...]
  /external/dropbear/libtommath/demo/
demo.c 303 mp_grow(&a, cnt);

Completed in 303 milliseconds

1 2