Home | History | Annotate | Download | only in libtommath

Lines Matching refs:used

28   if (a->used > b->used) {
29 min = b->used;
30 max = a->used;
33 min = a->used;
34 max = b->used;
45 /* get old used digit count and set new one */
46 olduse = c->used;
47 c->used = max + 1;
97 for (i = c->used; i < olduse; i++) {