Lines Matching refs:numPointers
89 RF_ASSERT(l->numPointers == RF_POINTERS_PER_ALLOC_LIST_ELEMENT); /* find end of list */
91 RF_ASSERT(l->numPointers >= 0 && l->numPointers <= RF_POINTERS_PER_ALLOC_LIST_ELEMENT);
92 if (l->numPointers == RF_POINTERS_PER_ALLOC_LIST_ELEMENT) {
97 l->pointers[l->numPointers] = p;
98 l->sizes[l->numPointers] = size;
99 l->numPointers++;
110 RF_ASSERT(p->numPointers >= 0 &&
111 p->numPointers <= RF_POINTERS_PER_ALLOC_LIST_ELEMENT);
112 for (i = 0; i < p->numPointers; i++) {