Home
last modified time | relevance | path

Searched refs:froms (Results 1 – 7 of 7) sorted by relevance

/glibc-2.36/elf/
Ddl-profile.c170 static struct here_fromstruct *froms; variable
240 if (sizeof (*froms) == 8) in _dl_start_profile()
242 else if (sizeof (*froms) == 16) in _dl_start_profile()
245 log_hashfraction = __ffs (HASHFRACTION * sizeof (*froms)) - 1; in _dl_start_profile()
436 froms = (struct here_fromstruct *) ((char *) tos + tossize); in _dl_start_profile()
453 froms[newfromidx].here = &data[idx]; in _dl_start_profile()
454 froms[newfromidx].link = tos[to_index]; in _dl_start_profile()
527 fromp = &froms[fromindex]; in _dl_mcount()
535 fromp = &froms[fromp->link]; in _dl_mcount()
552 froms[newfromidx].here = &data[narcs]; in _dl_mcount()
[all …]
Dsprof.c163 struct arc_list *froms; member
219 struct here_fromstruct *froms; member
752 struct here_fromstruct *froms; in load_profdata() local
928 result->froms = (struct here_fromstruct *) ((char *) result->tos in load_profdata()
935 froms = result->froms; in load_profdata()
943 froms[newfromidx].here = &data[idx]; in load_profdata()
944 froms[newfromidx].link = tos[to_index]; in load_profdata()
1146 newsym->froms = NULL; in read_symbols()
1198 struct arc_list *runp = sym->froms; in add_arcs()
1221 newp->next = sym->froms; in add_arcs()
[all …]
/glibc-2.36/gmon/
Dgmon.c135 p->kcountsize = ROUNDUP(p->textsize / HISTFRACTION, sizeof(*p->froms)); in weak_alias()
143 p->log_hashfraction = ffs(p->hashfraction * sizeof(*p->froms)) - 1; in weak_alias()
165 p->froms = (ARCINDEX *)cp; in weak_alias()
268 from_len = _gmonparam.fromssize / sizeof (*_gmonparam.froms); in write_call_graph()
271 if (_gmonparam.froms[from_index] == 0) in write_call_graph()
276 * sizeof (*_gmonparam.froms)); in write_call_graph()
277 for (to_index = _gmonparam.froms[from_index]; in write_call_graph()
Dmcount.c95 i = frompc / (p->hashfraction * sizeof(*p->froms)); in _MCOUNT_DECL()
97 frompcindex = &p->froms[i]; in _MCOUNT_DECL()
/glibc-2.36/gmon/sys/
Dgmon.h161 ARCINDEX *froms; member
/glibc-2.36/ChangeLog.old/
DChangeLog.132017 (statuc gmonparam): Likewise for froms.
2019 kcount and froms.
DChangeLog.1490 the froms[] array so the array is properly aligned.