Home
last modified time | relevance | path

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

/openbsd/src/gnu/usr.bin/gcc/gcc/
Dgmon.c56 static unsigned short *froms; variable
96 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION );
97 if ( froms == (unsigned short *) -1 ) {
99 froms = 0;
111 froms = 0;
167 endfrom = s_textsize / (HASHFRACTION * sizeof(*froms)); in _mcleanup()
169 if ( froms[fromindex] == 0 ) { in _mcleanup()
172 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms)); in _mcleanup()
173 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) { in _mcleanup()
225 &froms[((long) frompcindex) / (HASHFRACTION * sizeof(*froms))]; in mcount()
/openbsd/src/gnu/gcc/gcc/config/i386/
Dgmon-sol2.c105 static unsigned short *froms; variable
146 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION ); in monstartup()
147 if ( froms == (unsigned short *) -1 ) { in monstartup()
149 froms = 0; in monstartup()
161 froms = 0; in monstartup()
219 endfrom = s_textsize / (HASHFRACTION * sizeof(*froms)); in _mcleanup()
221 if ( froms[fromindex] == 0 ) { in _mcleanup()
224 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms)); in _mcleanup()
225 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) { in _mcleanup()
296 &froms[((long)frompcindex) / (HASHFRACTION * sizeof(*froms))]; in internal_mcount()
/openbsd/src/gnu/usr.bin/gcc/gcc/config/i386/
Dgmon-sol2.c112 static unsigned short *froms; variable
154 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION );
155 if ( froms == (unsigned short *) -1 ) {
157 froms = 0;
169 froms = 0;
226 endfrom = s_textsize / (HASHFRACTION * sizeof(*froms)); in _mcleanup()
228 if ( froms[fromindex] == 0 ) { in _mcleanup()
231 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms)); in _mcleanup()
232 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) { in _mcleanup()
302 &froms[((long)frompcindex) / (HASHFRACTION * sizeof(*froms))]; in internal_mcount()
/openbsd/src/gnu/gcc/gcc/config/sparc/
Dgmon-sol2.c76 static unsigned short *froms; variable
118 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION ); in monstartup()
119 if ( froms == (unsigned short *) -1 ) { in monstartup()
121 froms = 0; in monstartup()
133 froms = 0; in monstartup()
214 endfrom = s_textsize / (HASHFRACTION * sizeof(*froms)); in _mcleanup()
216 if ( froms[fromindex] == 0 ) { in _mcleanup()
219 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms)); in _mcleanup()
220 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) { in _mcleanup()
321 &froms[((long)frompcindex) / (HASHFRACTION * sizeof(*froms))]; in internal_mcount()
/openbsd/src/gnu/usr.bin/gcc/gcc/config/sparc/
Dgmon-sol2.c73 static unsigned short *froms; variable
117 froms = (unsigned short *) sbrk( s_textsize / HASHFRACTION );
118 if ( froms == (unsigned short *) -1 ) {
120 froms = 0;
132 froms = 0;
213 endfrom = s_textsize / (HASHFRACTION * sizeof(*froms)); in _mcleanup()
215 if ( froms[fromindex] == 0 ) { in _mcleanup()
218 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof(*froms)); in _mcleanup()
219 for (toindex=froms[fromindex]; toindex!=0; toindex=tos[toindex].link) { in _mcleanup()
322 &froms[((long)frompcindex) / (HASHFRACTION * sizeof(*froms))];
/openbsd/src/lib/libc/gmon/
Dgmon.c88 p->froms = addr; in monstartup()
124 if (p->froms != NULL) { in monstartup()
125 munmap(p->froms, p->fromssize); in monstartup()
126 p->froms = NULL; in monstartup()
243 endfrom = p->fromssize / sizeof(*p->froms); in _mcleanup()
245 if (p->froms[fromindex] == 0) in _mcleanup()
249 frompc += fromindex * p->hashfraction * sizeof(*p->froms); in _mcleanup()
250 for (toindex = p->froms[fromindex]; toindex != 0; in _mcleanup()
271 if (p->froms != NULL) { in _mcleanup()
272 munmap(p->froms, p->fromssize); in _mcleanup()
[all …]
Dmcount.c93 &p->froms[frompc / (HASHFRACTION * sizeof(*p->froms))]; in _MCOUNT_DECL()
97 &p->froms[frompc / (p->hashfraction * sizeof(*p->froms))]; in _MCOUNT_DECL()
/openbsd/src/sys/lib/libkern/
Dmcount.c95 &p->froms[frompc / (HASHFRACTION * sizeof(*p->froms))]; in _MCOUNT_DECL()
99 &p->froms[frompc / (p->hashfraction * sizeof(*p->froms))]; in _MCOUNT_DECL()
/openbsd/src/sys/ddb/
Ddb_prof.c119 &p->froms[frompc / (HASHFRACTION * sizeof(*p->froms))]; in db_prof_count()
123 &p->froms[frompc / (p->hashfraction * sizeof(*p->froms))]; in db_prof_count()
/openbsd/src/usr.sbin/kgmon/
Dkgmon.c307 u_short *froms, *tickbuf; in dumpstate() local
362 if ((froms = malloc(kvp->gpm.fromssize)) == NULL) in dumpstate()
365 i = kvm_read(kvp->kd, (u_long)kvp->gpm.froms, (void *)froms, in dumpstate()
371 if (sysctl(mib, 4, froms, &i, NULL, 0) == -1) in dumpstate()
397 endfrom = kvp->gpm.fromssize / sizeof(*froms); in dumpstate()
399 if (froms[fromindex] == 0) in dumpstate()
402 (fromindex * kvp->gpm.hashfraction * sizeof(*froms)); in dumpstate()
403 for (toindex = froms[fromindex]; toindex != 0; in dumpstate()
467 if (kvm_write(kvp->kd, (u_long)kvp->gpm.froms, zbuf, in reset()
/openbsd/src/usr.bin/yacc/
Doutput.c40 static short **froms; variable
249 froms = NEW2(nvectors, short *); in output_actions()
307 froms[i] = r = NEW2(shiftcount, short); in token_actions()
324 froms[nstates+i] = r = NEW2(reducecount, short); in token_actions()
437 froms[symno] = sp1 = sp = NEW2(count, short); in save_column()
519 free(froms[i]); in pack_table()
523 free(froms); in pack_table()
565 froms[j][k] != froms[i][k]) in matching_vector()
590 from = froms[i]; in pack_vector()
/openbsd/src/sys/sys/
Dgmon.h130 u_short *froms; member
/openbsd/src/sys/kern/
Dsubr_prof.c120 p->froms = (u_short *)cp; in prof_init()
223 gp->froms, gp->fromssize)); in sysctl_doprof()
/openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
DMM_Unix.pm2492 my @froms = sort keys %fromto;
2493 for my $from (@froms) {
/openbsd/src/games/fortune/datfiles/
Dfortunes212654 -- Nancy Boxer, "Structured Programming with Come-froms"