Lines Matching full:used
26 if (c->alloc < a->used + 1) {
27 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
33 if (a->sign == MP_NEG && (a->used > 1 || a->dp[0] >= b)) {
49 /* old number of used digits in c */
50 oldused = c->used;
71 for (ix = 1; ix < a->used; ix++) {
81 c->used = a->used + 1;
84 c->used = 1;
87 if (a->used == 1) {