Lines Matching refs:perf_cpu_map
21 struct perf_cpu_map *map; in process_event_mask()
57 struct perf_cpu_map *map; in process_event_cpus()
83 struct perf_cpu_map *map; in process_event_range_cpus()
105 struct perf_cpu_map *cpus; in test__cpu_map_synthesize()
135 struct perf_cpu_map *map = perf_cpu_map__new(str); in cpu_map_print()
161 struct perf_cpu_map *a = perf_cpu_map__new("4,2,1"); in test__cpu_map_merge()
162 struct perf_cpu_map *b = perf_cpu_map__new("4,5,7"); in test__cpu_map_merge()
163 struct perf_cpu_map *c = perf_cpu_map__merge(a, b); in test__cpu_map_merge()
176 struct perf_cpu_map *a = perf_cpu_map__new(lhs); in __test__cpu_map_intersect()
177 struct perf_cpu_map *b = perf_cpu_map__new(rhs); in __test__cpu_map_intersect()
178 struct perf_cpu_map *c = perf_cpu_map__intersect(a, b); in __test__cpu_map_intersect()
216 struct perf_cpu_map *any = perf_cpu_map__new_any_cpu(); in test__cpu_map_equal()
217 struct perf_cpu_map *one = perf_cpu_map__new("1"); in test__cpu_map_equal()
218 struct perf_cpu_map *two = perf_cpu_map__new("2"); in test__cpu_map_equal()
219 struct perf_cpu_map *empty = perf_cpu_map__intersect(one, two); in test__cpu_map_equal()
220 struct perf_cpu_map *pair = perf_cpu_map__new("1-2"); in test__cpu_map_equal()
221 struct perf_cpu_map *tmp; in test__cpu_map_equal()
222 struct perf_cpu_map *maps[] = {empty, any, one, two, pair}; in test__cpu_map_equal()