Home
last modified time | relevance | path

Searched refs:sample (Results 1 – 4 of 4) sorted by relevance

/kernel/time/
Dposix-cpu-timers.c181 unsigned long long *sample) in cpu_clock_sample() argument
187 *sample = prof_ticks(p); in cpu_clock_sample()
190 *sample = virt_ticks(p); in cpu_clock_sample()
193 *sample = task_sched_runtime(p); in cpu_clock_sample()
241 unsigned long long *sample) in cpu_clock_sample_group() argument
250 *sample = cputime_to_expires(cputime.utime + cputime.stime); in cpu_clock_sample_group()
254 *sample = cputime_to_expires(cputime.utime); in cpu_clock_sample_group()
258 *sample = cputime.sum_exec_runtime; in cpu_clock_sample_group()
541 unsigned long long *sample) in cpu_timer_sample_group() argument
550 *sample = cputime_to_expires(cputime.utime + cputime.stime); in cpu_timer_sample_group()
[all …]
/kernel/events/
Dinternal.h54 struct perf_sample_data *sample);
Dcore.c4840 struct perf_sample_data *sample) in perf_event__output_id_sample() argument
4843 __perf_event__output_id_sample(handle, sample); in perf_event__output_id_sample()
5210 struct perf_sample_data sample; in perf_event_read_event() local
5222 perf_event_header__init_id(&read_event.header, &sample, event); in perf_event_read_event()
5229 perf_event__output_id_sample(event, &handle, &sample); in perf_event_read_event()
5320 struct perf_sample_data sample; in perf_event_task_output() local
5327 perf_event_header__init_id(&task_event->event_id.header, &sample, event); in perf_event_task_output()
5342 perf_event__output_id_sample(event, &handle, &sample); in perf_event_task_output()
5414 struct perf_sample_data sample; in perf_event_comm_output() local
5421 perf_event_header__init_id(&comm_event->event_id.header, &sample, event); in perf_event_comm_output()
[all …]
/kernel/sched/
Dcore.c1636 static void update_avg(u64 *avg, u64 sample) in update_avg() argument
1638 s64 diff = sample - *avg; in update_avg()