Lines Matching defs:nused
43 int nused;
54 x->nallocated = x->nused = 0;
66 l->nallocated = l->nused + ALLOCCHUNK;
67 new = malloc(sizeof (char *) * l->nused);
68 memcpy(new, l->items, l->nused * sizeof (char *));
70 } else if (l->nallocated == l->nused) {
77 l->items[l->nused++] = s;
78 l->sorted = l->nused <= 1;
87 l->nused = n;
131 int hi = l->nused - 1;
134 qsort(l->items, l->nused, sizeof (char *), xcmp);
155 if (i >= l->nused || i < 0)