Home
last modified time | relevance | path

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

/openbsd/gnu/usr.bin/gcc/gcc/
H A Dgmon.c58 static long tolimit = 0; variable
102 tolimit = s_textsize * ARCDENSITY / 100;
103 if ( tolimit < MINARCS ) {
104 tolimit = MINARCS;
105 } else if ( tolimit > 65534 ) {
106 tolimit = 65534;
108 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
232 if (toindex >= tolimit) { in mcount()
265 if (toindex >= tolimit) { in mcount()
/openbsd/gnu/gcc/gcc/config/i386/
H A Dgmon-sol2.c107 static long tolimit = 0; variable
152 tolimit = s_textsize * ARCDENSITY / 100; in monstartup()
153 if ( tolimit < MINARCS ) { in monstartup()
154 tolimit = MINARCS; in monstartup()
155 } else if ( tolimit > 65534 ) { in monstartup()
156 tolimit = 65534; in monstartup()
158 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) ); in monstartup()
303 if (toindex >= tolimit) { in internal_mcount()
336 if (toindex >= tolimit) { in internal_mcount()
/openbsd/gnu/gcc/gcc/config/sparc/
H A Dgmon-sol2.c78 static long tolimit = 0; variable
124 tolimit = s_textsize * ARCDENSITY / 100; in monstartup()
125 if ( tolimit < MINARCS ) { in monstartup()
126 tolimit = MINARCS; in monstartup()
127 } else if ( tolimit > 65534 ) { in monstartup()
128 tolimit = 65534; in monstartup()
130 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) ); in monstartup()
328 if (toindex >= tolimit) { in internal_mcount()
361 if (toindex >= tolimit) { in internal_mcount()
/openbsd/gnu/usr.bin/gcc/gcc/config/i386/
H A Dgmon-sol2.c114 static long tolimit = 0; variable
160 tolimit = s_textsize * ARCDENSITY / 100;
161 if ( tolimit < MINARCS ) {
162 tolimit = MINARCS;
163 } else if ( tolimit > 65534 ) {
164 tolimit = 65534;
166 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
309 if (toindex >= tolimit) { in internal_mcount()
342 if (toindex >= tolimit) { in internal_mcount()
/openbsd/gnu/usr.bin/gcc/gcc/config/sparc/
H A Dgmon-sol2.c75 static long tolimit = 0; variable
123 tolimit = s_textsize * ARCDENSITY / 100;
124 if ( tolimit < MINARCS ) {
125 tolimit = MINARCS;
126 } else if ( tolimit > 65534 ) {
127 tolimit = 65534;
129 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
329 if (toindex >= tolimit) {
362 if (toindex >= tolimit) {
/openbsd/sys/kern/
H A Dsubr_prof.c77 long tolimit; in prof_init() local
94 tolimit = textsize * ARCDENSITY / 100; in prof_init()
95 if (tolimit < MINARCS) in prof_init()
96 tolimit = MINARCS; in prof_init()
97 else if (tolimit > MAXARCS) in prof_init()
98 tolimit = MAXARCS; in prof_init()
99 tossize = tolimit * sizeof(struct tostruct); in prof_init()
129 p->tolimit = tolimit; in prof_init()
/openbsd/lib/libc/gmon/
H A Dgmon.c71 p->tolimit = p->textsize * ARCDENSITY / 100; in monstartup()
72 if (p->tolimit < MINARCS) in monstartup()
73 p->tolimit = MINARCS; in monstartup()
74 else if (p->tolimit > MAXARCS) in monstartup()
75 p->tolimit = MAXARCS; in monstartup()
76 p->tossize = p->tolimit * sizeof(struct tostruct); in monstartup()
H A Dmcount.c104 if (toindex >= p->tolimit) in _MCOUNT_DECL()
138 if (toindex >= p->tolimit) in _MCOUNT_DECL()
/openbsd/sys/lib/libkern/
H A Dmcount.c106 if (toindex >= p->tolimit) in _MCOUNT_DECL()
140 if (toindex >= p->tolimit) in _MCOUNT_DECL()
/openbsd/sys/ddb/
H A Ddb_prof.c130 if (toindex >= p->tolimit) in db_prof_count()
164 if (toindex >= p->tolimit) in db_prof_count()
/openbsd/sys/sys/
H A Dgmon.h134 long tolimit; member