Searched refs:mp_grow (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/wpa/src/tls/ |
H A D | libtommath.c | 166 static int mp_grow(mp_int * a, int size); 232 if ((res = mp_grow (c, max + 1)) != MP_OKAY) { in s_mp_add() 310 if ((res = mp_grow (c, max)) != MP_OKAY) { in s_mp_sub() 960 if ((res = mp_grow(a, 2)) != MP_OKAY) { in mp_read_unsigned_bin() 1132 if ((res = mp_grow (b, a->used)) != MP_OKAY) { in mp_copy() 1256 static int mp_grow (mp_int * a, int size) in mp_grow() function 1333 if ((res = mp_grow (b, a->used)) != MP_OKAY) { in mp_div_2() 1389 if ((res = mp_grow (c, c->used + b / DIGIT_BIT + 1)) != MP_OKAY) { in mp_mul_2d() 1505 if ((res = mp_grow (a, a->used + b)) != MP_OKAY) { in mp_lshd() 2218 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) { in mp_2expt() [all …]
|