Lines Matching refs:c2c_fmt

399 struct c2c_fmt {  struct
423 struct c2c_fmt *c2c_fmt; in c2c_width() local
426 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_width()
427 dim = c2c_fmt->dim; in c2c_width()
433 c2c_fmt->dim->width; in c2c_width()
440 struct c2c_fmt *c2c_fmt; in c2c_header() local
445 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_header()
446 dim = c2c_fmt->dim; in c2c_header()
1674 struct c2c_fmt *c2c_fmt; in fmt_free() local
1676 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in fmt_free()
1677 free(c2c_fmt); in fmt_free()
1682 struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt); in fmt_equal()
1683 struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt); in fmt_equal()
1705 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_entry() local
1706 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_entry()
1722 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_cmp() local
1723 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_cmp()
1731 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_collapse() local
1732 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_collapse()
1739 static struct c2c_fmt *get_format(const char *name) in get_format()
1742 struct c2c_fmt *c2c_fmt; in get_format() local
1748 c2c_fmt = zalloc(sizeof(*c2c_fmt)); in get_format()
1749 if (!c2c_fmt) in get_format()
1752 c2c_fmt->dim = dim; in get_format()
1754 fmt = &c2c_fmt->fmt; in get_format()
1768 return c2c_fmt; in get_format()
1773 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_output() local
1775 if (!c2c_fmt) { in c2c_hists__init_output()
1780 perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_output()
1786 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_sort() local
1789 if (!c2c_fmt) { in c2c_hists__init_sort()
1794 dim = c2c_fmt->dim; in c2c_hists__init_sort()
1798 perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_sort()