Lines Matching refs:c2c_fmt

408 struct c2c_fmt {  struct
432 struct c2c_fmt *c2c_fmt; in c2c_width() local
435 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_width()
436 dim = c2c_fmt->dim; in c2c_width()
442 c2c_fmt->dim->width; in c2c_width()
449 struct c2c_fmt *c2c_fmt; in c2c_header() local
454 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_header()
455 dim = c2c_fmt->dim; in c2c_header()
1683 struct c2c_fmt *c2c_fmt; in fmt_free() local
1685 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in fmt_free()
1686 free(c2c_fmt); in fmt_free()
1691 struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt); in fmt_equal()
1692 struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt); in fmt_equal()
1714 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_entry() local
1715 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_entry()
1731 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_cmp() local
1732 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_cmp()
1740 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_collapse() local
1741 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_collapse()
1748 static struct c2c_fmt *get_format(const char *name) in get_format()
1751 struct c2c_fmt *c2c_fmt; in get_format() local
1757 c2c_fmt = zalloc(sizeof(*c2c_fmt)); in get_format()
1758 if (!c2c_fmt) in get_format()
1761 c2c_fmt->dim = dim; in get_format()
1763 fmt = &c2c_fmt->fmt; in get_format()
1777 return c2c_fmt; in get_format()
1782 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_output() local
1784 if (!c2c_fmt) { in c2c_hists__init_output()
1789 perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_output()
1795 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_sort() local
1798 if (!c2c_fmt) { in c2c_hists__init_sort()
1803 dim = c2c_fmt->dim; in c2c_hists__init_sort()
1807 perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_sort()