Home | History | Annotate | Download | only in gmon

Lines Matching refs:top

267 	struct tostruct *top;
290 top = &p->tos[(size_t)toindex];
291 top->selfpc = selfpc;
292 top->count = count;
293 top->link = 0;
296 top = &p->tos[(size_t)toindex];
297 if (top->selfpc == selfpc) {
301 top->count+= count;
306 * top points to what we are looking at,
310 if (top->link == 0) {
312 * top is end of the chain and
314 * top->selfpc == selfpc. so
323 top = &p->tos[(size_t)toindex];
324 top->selfpc = selfpc;
325 top->count = count;
326 top->link = *frompcindex;
333 top = &p->tos[top->link];
334 if (top->selfpc == selfpc) {
339 top->count += count;