Lines Matching refs:used
32 olduse = x->used; in fast_mp_montgomery_reduce()
35 if (x->alloc < n->used + 1) { in fast_mp_montgomery_reduce()
36 if ((res = mp_grow (x, n->used + 1)) != MP_OKAY) { in fast_mp_montgomery_reduce()
55 for (ix = 0; ix < x->used; ix++) { in fast_mp_montgomery_reduce()
60 for (; ix < n->used * 2 + 1; ix++) { in fast_mp_montgomery_reduce()
68 for (ix = 0; ix < n->used; ix++) { in fast_mp_montgomery_reduce()
104 for (iy = 0; iy < n->used; iy++) { in fast_mp_montgomery_reduce()
129 for (; ix <= n->used * 2 + 1; ix++) { in fast_mp_montgomery_reduce()
144 _W = W + n->used; in fast_mp_montgomery_reduce()
146 for (ix = 0; ix < n->used + 1; ix++) { in fast_mp_montgomery_reduce()
159 x->used = n->used + 1; in fast_mp_montgomery_reduce()