Home | History | Annotate | Download | only in libtommath

Lines Matching full:used

24   if (b->alloc < a->used) {
25 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
30 oldused = b->used;
31 b->used = a->used;
36 tmpa = a->dp + b->used - 1;
39 tmpb = b->dp + b->used - 1;
43 for (x = b->used - 1; x >= 0; x--) {
55 tmpb = b->dp + b->used;
56 for (x = b->used; x < oldused; x++) {