Searched refs:nextf (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/libexec/rtld-elf/
H A Dmalloc.c109 * nextf[i] is the pointer to the next free block of size 2^(i+3). The
114 static union overhead *nextf[NBUCKETS]; variable in typeref:union:overhead
226 if ((op = nextf[bucket]) == NULL) {
228 if ((op = nextf[bucket]) == NULL)
232 nextf[bucket] = op->ov_next;
306 nextf[bucket] = op;
335 op->ov_next = nextf[size]; /* also clobbers ov_magic */
336 nextf[size] = op;
436 for (p = nextf[i]; p && j != srchlen; p = p->ov_next) {
463 for (j = 0, p = nextf[
[all...]
/freebsd-10.0-release/contrib/tcsh/
H A Dtc.alloc.c137 * nextf[i] is the pointer to the next free block of size 2^(i+3). The
142 static union overhead *nextf[NBUCKETS] IZERO_STRUCT;
207 if (nextf[bucket] == NULL)
209 if ((p = nextf[bucket]) == NULL) {
222 nextf[bucket] = nextf[bucket]->ov_next;
255 if (nextf[bucket])
290 nextf[bucket] = op;
332 op->ov_next = nextf[size];
333 nextf[siz
[all...]

Completed in 118 milliseconds