HomeSort by relevance Sort by last modified time
    Searched defs:mp_grow (Results 1 - 3 of 3) sorted by null

  /external/dropbear/libtommath/
bn_mp_grow.c 19 int mp_grow (mp_int * a, int size) function
  /external/wpa_supplicant_8/src/tls/
libtommath.c 174 static int mp_grow(mp_int * a, int size);
240 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
318 if ((res = mp_grow (c, max)) != MP_OKAY) {
968 if ((res = mp_grow(a, 2)) != MP_OKAY) {
1140 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1264 static int mp_grow (mp_int * a, int size) function
1341 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1397 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...]

Completed in 101 milliseconds