Lines Matching refs:c2c_fmt

412 struct c2c_fmt {  struct
436 struct c2c_fmt *c2c_fmt; in c2c_width() argument
439 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_width()
440 dim = c2c_fmt->dim; in c2c_width()
446 c2c_fmt->dim->width; in c2c_width()
453 struct c2c_fmt *c2c_fmt; in c2c_header() local
458 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_header()
459 dim = c2c_fmt->dim; in c2c_header()
1641 struct c2c_fmt *c2c_fmt; in fmt_free() local
1643 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in fmt_free()
1644 free(c2c_fmt); in fmt_free()
1649 struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt); in fmt_equal()
1650 struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt); in fmt_equal()
1672 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_entry() local
1673 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_entry()
1689 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_cmp() local
1690 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_cmp()
1698 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_collapse() local
1699 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_collapse()
1706 static struct c2c_fmt *get_format(const char *name) in get_format()
1709 struct c2c_fmt *c2c_fmt; in get_format() local
1715 c2c_fmt = zalloc(sizeof(*c2c_fmt)); in get_format()
1716 if (!c2c_fmt) in get_format()
1719 c2c_fmt->dim = dim; in get_format()
1721 fmt = &c2c_fmt->fmt; in get_format()
1735 return c2c_fmt; in get_format()
1740 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_output() local
1742 if (!c2c_fmt) { in c2c_hists__init_output()
1747 perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_output()
1753 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_sort() local
1756 if (!c2c_fmt) { in c2c_hists__init_sort()
1761 dim = c2c_fmt->dim; in c2c_hists__init_sort()
1765 perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_sort()