Searched refs:time_conv (Results 1 - 9 of 9) sorted by relevance

/linux-master/tools/perf/util/
H A Dtsc.c80 .time_conv = {
100 event.time_conv.time_mult = tc.time_mult;
101 event.time_conv.time_shift = tc.time_shift;
102 event.time_conv.time_zero = tc.time_zero;
103 event.time_conv.time_cycles = tc.time_cycles;
104 event.time_conv.time_mask = tc.time_mask;
105 event.time_conv.cap_user_time_zero = tc.cap_user_time_zero;
106 event.time_conv.cap_user_time_short = tc.cap_user_time_short;
H A Dtool.h73 time_conv, member in struct:perf_tool
H A Djitdump.c207 if (jd->use_arch_timestamp && !jd->session->time_conv.time_mult) {
395 struct perf_record_time_conv *time_conv = &jd->session->time_conv; local
400 tc.time_shift = time_conv->time_shift;
401 tc.time_mult = time_conv->time_mult;
402 tc.time_zero = time_conv->time_zero;
410 if (event_contains(*time_conv, time_cycles)) {
411 tc.time_cycles = time_conv->time_cycles;
412 tc.time_mask = time_conv->time_mask;
413 tc.cap_user_time_zero = time_conv
[all...]
H A Dsession.h39 struct perf_record_time_conv time_conv; member in struct:perf_session
H A Dsession.c557 if (tool->time_conv == NULL)
558 tool->time_conv = process_event_time_conv_stub;
989 event->time_conv.time_shift = bswap_64(event->time_conv.time_shift);
990 event->time_conv.time_mult = bswap_64(event->time_conv.time_mult);
991 event->time_conv.time_zero = bswap_64(event->time_conv.time_zero);
993 if (event_contains(event->time_conv, time_cycles)) {
994 event->time_conv
[all...]
H A Darm-spe.c1295 struct perf_record_time_conv *tc = &session->time_conv;
H A Dcs-etm.c3238 struct perf_record_time_conv *tc = &session->time_conv;
/linux-master/tools/perf/
H A Dbuiltin-inject.c1329 static void get_tsc_conv(struct perf_tsc_conversion *tc, struct perf_record_time_conv *time_conv) argument
1331 tc->time_shift = time_conv->time_shift;
1332 tc->time_mult = time_conv->time_mult;
1333 tc->time_zero = time_conv->time_zero;
1334 tc->time_cycles = time_conv->time_cycles;
1335 tc->time_mask = time_conv->time_mask;
1336 tc->cap_user_time_zero = time_conv->cap_user_time_zero;
1337 tc->cap_user_time_short = time_conv->cap_user_time_short;
1344 get_tsc_conv(&gs->host_tc, &inject->session->time_conv);
1345 get_tsc_conv(&gs->guest_tc, &gs->session->time_conv);
[all...]
/linux-master/tools/lib/perf/include/perf/
H A Devent.h512 struct perf_record_time_conv time_conv; member in union:perf_event

Completed in 346 milliseconds