Home
last modified time | relevance | path

Searched refs:textsize (Results 1 – 5 of 5) sorted by relevance

/glibc-2.36/elf/
Ddl-profile.c175 static size_t textsize; variable
227 textsize = highpc - lowpc; in _dl_start_profile()
228 kcountsize = textsize / HISTFRACTION; in _dl_start_profile()
249 tossize = textsize / HASHFRACTION; in _dl_start_profile()
250 fromlimit = textsize * ARCDENSITY / 100; in _dl_start_profile()
504 if (frompc >= textsize) in _dl_mcount()
507 if (selfpc >= textsize) in _dl_mcount()
Dsprof.c408 size_t textsize; in load_shobj() local
475 textsize = result->highpc - result->lowpc; in load_shobj()
476 result->kcountsize = textsize / HISTFRACTION; in load_shobj()
482 result->tossize = textsize / HASHFRACTION; in load_shobj()
483 result->fromlimit = textsize * ARCDENSITY / 100; in load_shobj()
/glibc-2.36/gmon/
Dgmon.c134 p->textsize = p->highpc - p->lowpc; in weak_alias()
135 p->kcountsize = ROUNDUP(p->textsize / HISTFRACTION, sizeof(*p->froms)); in weak_alias()
145 p->fromssize = p->textsize / HASHFRACTION; in weak_alias()
146 p->tolimit = p->textsize * ARCDENSITY / 100; in weak_alias()
Dmcount.c82 if (frompc > p->textsize) in _MCOUNT_DECL()
/glibc-2.36/gmon/sys/
Dgmon.h168 unsigned long textsize; member