Searched refs:toindex (Results 1 – 6 of 6) sorted by relevance
| /freebsd-9-stable/contrib/gcc/config/i386/ |
| D | gmon-sol2.c | 205 int toindex; in _mcleanup() local 225 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) { in _mcleanup() 229 frompc , tos[toindex].selfpc , tos[toindex].count ); in _mcleanup() 232 rawarc.raw_selfpc = (unsigned long) tos[toindex].selfpc; in _mcleanup() 233 rawarc.raw_count = tos[toindex].count; in _mcleanup() 252 register long toindex; in internal_mcount() local 297 toindex = *frompcindex; in internal_mcount() 298 if (toindex == 0) { in internal_mcount() 302 toindex = ++tos[0].link; in internal_mcount() 303 if (toindex >= tolimit) { in internal_mcount() [all …]
|
| /freebsd-9-stable/contrib/gcc/config/sparc/ |
| D | gmon-sol2.c | 177 int toindex; in _mcleanup() local 220 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) { in _mcleanup() 224 frompc , tos[toindex].selfpc , tos[toindex].count ); in _mcleanup() 227 rawarc.raw_selfpc = (unsigned long) tos[toindex].selfpc; in _mcleanup() 228 rawarc.raw_count = tos[toindex].count; in _mcleanup() 283 register long toindex; in internal_mcount() local 322 toindex = *frompcindex; in internal_mcount() 323 if (toindex == 0) { in internal_mcount() 327 toindex = ++tos[0].link; in internal_mcount() 328 if (toindex >= tolimit) { in internal_mcount() [all …]
|
| /freebsd-9-stable/sys/libkern/ |
| D | mcount.c | 69 long toindex; local 155 toindex = *frompcindex; 156 if (toindex == 0) { 160 toindex = ++p->tos[0].link; 161 if (toindex >= p->tolimit) 165 *frompcindex = toindex; 166 top = &p->tos[toindex]; 172 top = &p->tos[toindex]; 194 toindex = ++p->tos[0].link; 195 if (toindex >= p->tolimit) [all …]
|
| /freebsd-9-stable/lib/libc/gmon/ |
| D | mcount.c | 75 long toindex; in _MCOUNT_DECL() local 187 toindex = *frompcindex; in _MCOUNT_DECL() 188 if (toindex == 0) { in _MCOUNT_DECL() 192 toindex = ++p->tos[0].link; in _MCOUNT_DECL() 193 if (toindex >= p->tolimit) in _MCOUNT_DECL() 197 *frompcindex = toindex; in _MCOUNT_DECL() 198 top = &p->tos[toindex]; in _MCOUNT_DECL() 204 top = &p->tos[toindex]; in _MCOUNT_DECL() 226 toindex = ++p->tos[0].link; in _MCOUNT_DECL() 227 if (toindex >= p->tolimit) in _MCOUNT_DECL() [all …]
|
| D | gmon.c | 128 int toindex; in _mcleanup() local 197 for (toindex = p->froms[fromindex]; toindex != 0; in _mcleanup() 198 toindex = p->tos[toindex].link) { in _mcleanup() 202 frompc, p->tos[toindex].selfpc, in _mcleanup() 203 p->tos[toindex].count); in _mcleanup() 207 rawarc.raw_selfpc = p->tos[toindex].selfpc; in _mcleanup() 208 rawarc.raw_count = p->tos[toindex].count; in _mcleanup()
|
| /freebsd-9-stable/usr.sbin/kgmon/ |
| D | kgmon.c | 360 int fromindex, endfrom, toindex; local 447 for (toindex = froms[fromindex]; toindex != 0; 448 toindex = tos[toindex].link) { 451 "count %ld", frompc, tos[toindex].selfpc, 452 tos[toindex].count); 454 rawarc.raw_selfpc = (u_long)tos[toindex].selfpc; 455 rawarc.raw_count = tos[toindex].count;
|