Symbol: xyarray__entry
tools/lib/perf/evlist.c
332
#define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
tools/lib/perf/evlist.c
521
#define FD(e, x, y) (*(int *) xyarray__entry(e->fd, x, y))
tools/lib/perf/evsel.c
60
((int *)xyarray__entry(_evsel->fd, _cpu_map_idx, _thread))
tools/lib/perf/evsel.c
62
(_evsel->mmap ? ((struct perf_mmap *) xyarray__entry(_evsel->mmap, _cpu_map_idx, _thread)) \
tools/perf/builtin-record.c
1983
sid = xyarray__entry(evsel->core.sample_id, cpu_idx, thread_idx);
tools/perf/builtin-stat.c
269
#define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
tools/perf/util/bpf-filter.c
68
#define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
tools/perf/util/bpf_counter_cgroup.c
45
#define FD(evt, cpu) (*(int *)xyarray__entry(evt->core.fd, cpu, 0))
tools/perf/util/bpf_off_cpu.c
96
xyarray__entry(evsel->core.fd, cpu_nr, 0),
tools/perf/util/bpf_trace_augment.c
77
xyarray__entry(bpf_output->core.fd,
tools/perf/util/counts.h
22
return xyarray__entry(counts->values, cpu_map_idx, thread);
tools/perf/util/counts.h
28
return *((bool *) xyarray__entry(counts->loaded, cpu_map_idx, thread));
tools/perf/util/counts.h
34
*((bool *) xyarray__entry(counts->loaded, cpu_map_idx, thread)) = loaded;
tools/perf/util/evlist.c
73
#define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
tools/perf/util/evlist.c
74
#define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y)
tools/perf/util/evsel.c
254
#define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
tools/perf/util/hwmon_pmu.c
756
#define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
tools/perf/util/tool_pmu.c
220
#define FD(e, x, y) (*(int *)xyarray__entry(e->core.fd, x, y))
tools/perf/util/tool_pmu.c
272
start_time = xyarray__entry(evsel->start_times, idx, thread);
tools/perf/util/tool_pmu.c
526
start_time = xyarray__entry(evsel->start_times, cpu_map_idx, thread);