Searched refs:tolimit (Results 1 - 8 of 8) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/i386/
H A Dgmon-sol2.c116 static long tolimit = 0; variable
163 tolimit = s_textsize * ARCDENSITY / 100;
164 if ( tolimit < MINARCS ) {
165 tolimit = MINARCS;
166 } else if ( tolimit > 65534 ) {
167 tolimit = 65534;
169 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
362 if (toindex >= tolimit) {
395 if (toindex >= tolimit) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/sparc/
H A Dgmon-sol2.c78 static long tolimit = 0; variable
124 tolimit = s_textsize * ARCDENSITY / 100;
125 if ( tolimit < MINARCS ) {
126 tolimit = MINARCS;
127 } else if ( tolimit > 65534 ) {
128 tolimit = 65534;
130 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
328 if (toindex >= tolimit) {
361 if (toindex >= tolimit) {
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/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) {
342 if (toindex >= tolimit) {
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/sparc/
H A Dgmon-sol2.c78 static long tolimit = 0; variable
124 tolimit = s_textsize * ARCDENSITY / 100;
125 if ( tolimit < MINARCS ) {
126 tolimit = MINARCS;
127 } else if ( tolimit > 65534 ) {
128 tolimit = 65534;
130 tos = (struct tostruct *) sbrk( tolimit * sizeof( struct tostruct ) );
328 if (toindex >= tolimit) {
361 if (toindex >= tolimit) {
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dgmon.h129 long tolimit; member in struct:gmonparam
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dsubr_prof.c83 p->tolimit = p->textsize * ARCDENSITY / 100;
84 if (p->tolimit < MINARCS)
85 p->tolimit = MINARCS;
86 else if (p->tolimit > MAXARCS)
87 p->tolimit = MAXARCS;
88 p->tossize = p->tolimit * sizeof(struct tostruct);
/netbsd-6-1-5-RELEASE/common/lib/libc/gmon/
H A Dmcount.c184 if (toindex >= p->tolimit)
218 if (toindex >= p->tolimit)
/netbsd-6-1-5-RELEASE/lib/libc/gmon/
H A Dgmon.c137 p->tolimit = p->textsize * ARCDENSITY / 100;
138 if (p->tolimit < MINARCS)
139 p->tolimit = MINARCS;
140 else if (p->tolimit > MAXARCS)
141 p->tolimit = MAXARCS;
142 p->tossize = p->tolimit * sizeof(struct tostruct);
275 if (toindex >= p->tolimit)
310 if (toindex >= p->tolimit)

Completed in 69 milliseconds