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