Home | History | Annotate | Download | only in examples

Lines Matching refs:have

49    not be constrained to have access points at block boundaries, but requires
76 int have; /* number of list entries filled in */
107 index->have = 0;
111 else if (index->have == index->size) {
121 /* fill in entry and increment how many we have */
122 next = index->list + index->have;
130 index->have++;
229 index->list = realloc(index->list, sizeof(struct point) * index->have);
230 index->size = index->have;
264 ret = index->have;
395 offset = (index->list[index->have - 1].out << 1) / 3;