Lines Matching defs:nextf
109 * nextf[i] is the pointer to the next free block of size 2^(i+3). The
114 static union overhead *nextf[NBUCKETS];
240 if ((op = nextf[bucket]) == NULL) {
242 if ((op = nextf[bucket]) == NULL) {
248 nextf[bucket] = op->ov_next;
304 nextf[bucket] = op;
334 op->ov_next = nextf[(unsigned int)size];/* also clobbers ov_magic */
335 nextf[(unsigned int)size] = op;
452 for (p = nextf[i]; p && j != srchlen; p = p->ov_next) {
479 for (j = 0, p = nextf[i]; p; p = p->ov_next, j++)