Home
last modified time | relevance | path

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

/freebsd/lib/libc/gmon/
H A Dgmon.c79 p->tolimit = p->textsize * ARCDENSITY / 100; in monstartup()
80 if (p->tolimit < MINARCS) in monstartup()
81 p->tolimit = MINARCS; in monstartup()
82 else if (p->tolimit > MAXARCS) in monstartup()
83 p->tolimit = MAXARCS; in monstartup()
84 p->tossize = p->tolimit * sizeof(struct tostruct); in monstartup()
H A Dmcount.c189 if (toindex >= p->tolimit) in _MCOUNT_DECL()
223 if (toindex >= p->tolimit) in _MCOUNT_DECL()
/freebsd/sys/sys/
H A Dgmon.h162 long tolimit; member