Searched refs:tolimit (Results 1 – 11 of 11) sorted by relevance
58 static long tolimit = 0; variable102 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()
107 static long tolimit = 0; variable152 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()
78 static long tolimit = 0; variable124 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()
114 static long tolimit = 0; variable160 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()
75 static long tolimit = 0; variable123 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) {
77 long tolimit; in prof_init() local94 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()
71 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()
104 if (toindex >= p->tolimit) in _MCOUNT_DECL()138 if (toindex >= p->tolimit) in _MCOUNT_DECL()
106 if (toindex >= p->tolimit) in _MCOUNT_DECL()140 if (toindex >= p->tolimit) in _MCOUNT_DECL()
130 if (toindex >= p->tolimit) in db_prof_count()164 if (toindex >= p->tolimit) in db_prof_count()
134 long tolimit; member