Lines Matching refs:nl
320 compute_times(nltype *nl, profrec_t *psym)
332 psym->seconds = (double)nl->nticks;
333 if (nl->ncalls) {
334 psym->msecs_per_call = (double)nl->nticks /
335 (double)nl->ncalls;
339 psym->seconds = (double)nl->nticks / (double)hz;
340 if (nl->ncalls) {
343 (double)nl->ncalls;
350 ((double)nl->nticks / (double)n_pcsamples) * 100;
358 nltype *nl;
374 nl = mi->nl;
382 if ((nl[i].ncalls == 0) && (nl[i].nticks == 0)) {
393 profsym[ndx].addr = nl[i].value;
394 profsym[ndx].ncalls = nl[i].ncalls;
395 profsym[ndx].name = nl[i].name;
396 profsym[ndx].demangled_name = nl[i].name;
399 compute_times(&nl[i], &profsym[ndx]);
416 nltype *nl;
427 if (nl = nllookup(module, *pcptr, &nxt_func)) {
438 nl->nticks += nticks;
513 nltype *nl;
538 if (nl = nllookup(mi, calleep->topc, 0)) {
539 f_end = mi->load_base + (nl->value -
540 mi->txt_origin) + nl->size;
542 nl->ncalls += calleep->count;