Home
last modified time | relevance | path

Searched refs:nextf (Results 1 – 3 of 3) sorted by relevance

/freebsd/libexec/rtld-elf/
H A Drtld_malloc.c95 static union overhead *nextf[NBUCKETS]; variable
142 if ((op = nextf[bucket]) == NULL) { in __crt_malloc()
144 if ((op = nextf[bucket]) == NULL) in __crt_malloc()
148 nextf[bucket] = op->ov_next; in __crt_malloc()
223 nextf[bucket] = op; in morecore()
246 op->ov_next = nextf[size]; /* also clobbers ov_magic */ in __crt_free()
247 nextf[size] = op; in __crt_free()
/freebsd/contrib/tcsh/
H A Dtc.alloc.c146 static union overhead *nextf[NBUCKETS] IZERO_STRUCT; variable
211 if (nextf[bucket] == NULL) in malloc()
213 if ((p = nextf[bucket]) == NULL) { in malloc()
226 nextf[bucket] = nextf[bucket]->ov_next; in malloc()
259 if (nextf[bucket]) in morecore()
294 nextf[bucket] = op; in morecore()
336 op->ov_next = nextf[size]; in free()
337 nextf[size] = op; in free()
490 for (p = nextf[i]; p && j != srchlen; p = p->ov_next) { in findbucket()
617 for (j = 0, p = nextf[i]; p; p = p->ov_next, j++) in showall()
/freebsd/contrib/mandoc/
H A Dterm_ps.c76 enum termfont nextf; /* building next font here */ member
1072 if (p->ps->nextf != p->ps->lastf) { in ps_plast()
1074 ps_setfont(p, p->ps->nextf); in ps_plast()
1076 p->ps->nextf = TERMFONT_NONE; in ps_plast()
1131 switch (p->ps->nextf) { in ps_letter()
1135 p->ps->nextf = TERMFONT_BI; in ps_letter()
1138 p->ps->nextf = TERMFONT_UNDER; in ps_letter()
1145 switch (p->ps->nextf) { in ps_letter()
1149 p->ps->nextf = TERMFONT_BI; in ps_letter()
1152 p->ps->nextf = TERMFONT_BOLD; in ps_letter()