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

  /external/dropbear/libtommath/
bn_mp_grow.c 19 int mp_grow (mp_int * a, int size) function
  /external/wpa_supplicant/
libtommath.c 130 static int mp_grow(mp_int * a, int size);
187 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
265 if ((res = mp_grow (c, max)) != MP_OKAY) {
904 if ((res = mp_grow(a, 2)) != MP_OKAY) {
1076 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1200 static int mp_grow (mp_int * a, int size) function
1274 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
1329 if ((res = mp_grow (c, c->used + b / DIGIT_BIT + 1)) != MP_OKAY) {
1442 if ((res = mp_grow (a, a->used + b)) != MP_OKAY) {
    [all...]
  /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/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 25 milliseconds