Lines Matching refs:tm
300 static bool intel_pt_log_events(struct intel_pt *pt, u64 tm) in intel_pt_log_events() argument
312 if (!tm) in intel_pt_log_events()
313 tm = 1; in intel_pt_log_events()
315 return !n || !perf_time__ranges_skip_sample(range, n, tm); in intel_pt_log_events()
2731 u64 tm = ptq->timestamp; in intel_ptq_synth_error() local
2737 tm = pt->timeless_decoding ? 0 : tsc_to_perf_time(tm, &pt->tc); in intel_ptq_synth_error()
2747 state->from_ip, tm, machine_pid, vcpu); in intel_ptq_synth_error()
4225 u64 tsc, tm; in intel_pt_tsc_start() local
4230 tm = tsc_to_perf_time(tsc, &pt->tc); in intel_pt_tsc_start()
4231 if (tm < ns) in intel_pt_tsc_start()
4236 while (tm < ns) in intel_pt_tsc_start()
4237 tm = tsc_to_perf_time(++tsc, &pt->tc); in intel_pt_tsc_start()
4245 u64 tsc, tm; in intel_pt_tsc_end() local
4250 tm = tsc_to_perf_time(tsc, &pt->tc); in intel_pt_tsc_end()
4251 if (tm > ns) in intel_pt_tsc_end()
4256 while (tm > ns) in intel_pt_tsc_end()
4257 tm = tsc_to_perf_time(--tsc, &pt->tc); in intel_pt_tsc_end()