Home | History | Annotate | Download | only in libtommath

Lines Matching refs:used

31   /* get old used count */
32 olduse = x->used;
35 if (x->alloc < n->used + 1) {
36 if ((res = mp_grow (x, n->used + 1)) != MP_OKAY) {
54 /* copy the digits of a into W[0..a->used-1] */
55 for (ix = 0; ix < x->used; ix++) {
59 /* zero the high words of W[a->used..m->used*2] */
60 for (; ix < n->used * 2 + 1; ix++) {
68 for (ix = 0; ix < n->used; ix++) {
90 * first m->used words of W[] have the carries fixed
104 for (iy = 0; iy < n->used; iy++) {
129 for (; ix <= n->used * 2 + 1; ix++) {
144 _W = W + n->used;
146 for (ix = 0; ix < n->used + 1; ix++) {
151 * m->used+1 we'll have to clear the digits
158 /* set the max used and clamp */
159 x->used = n->used + 1;