Searched refs:_list (Results 1 – 2 of 2) sorted by relevance
/tools/perf/util/ |
D | hist.h | 329 #define perf_hpp_list__for_each_format(_list, format) \ argument 330 list_for_each_entry(format, &(_list)->fields, list) 332 #define perf_hpp_list__for_each_format_safe(_list, format, tmp) \ argument 333 list_for_each_entry_safe(format, tmp, &(_list)->fields, list) 335 #define perf_hpp_list__for_each_sort_list(_list, format) \ argument 336 list_for_each_entry(format, &(_list)->sorts, sort_list) 338 #define perf_hpp_list__for_each_sort_list_safe(_list, format, tmp) \ argument 339 list_for_each_entry_safe(format, tmp, &(_list)->sorts, sort_list)
|
/tools/perf/ |
D | builtin-c2c.c | 1813 #define PARSE_LIST(_list, _fn) \ argument 1818 if (!_list) \ 1821 for (tok = strtok_r((char *)_list, ", ", &tmp); \
|