Searched refs:mp_grow (Results 1 – 1 of 1) sorted by relevance
/external/wpa_supplicant_8/src/tls/ |
D | libtommath.c | 174 static int mp_grow(mp_int * a, int size); 240 if ((res = mp_grow (c, max + 1)) != MP_OKAY) { in s_mp_add() 318 if ((res = mp_grow (c, max)) != MP_OKAY) { in s_mp_sub() 968 if ((res = mp_grow(a, 2)) != MP_OKAY) { in mp_read_unsigned_bin() 1140 if ((res = mp_grow (b, a->used)) != MP_OKAY) { in mp_copy() 1264 static int mp_grow (mp_int * a, int size) in mp_grow() function 1341 if ((res = mp_grow (b, a->used)) != MP_OKAY) { in mp_div_2() 1397 if ((res = mp_grow (c, c->used + b / DIGIT_BIT + 1)) != MP_OKAY) { in mp_mul_2d() 1513 if ((res = mp_grow (a, a->used + b)) != MP_OKAY) { in mp_lshd() 2226 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) { in mp_2expt() [all …]
|