• Home
  • Raw
  • Download

Lines Matching refs:c2c_fmt

418 struct c2c_fmt {  struct
442 struct c2c_fmt *c2c_fmt; in c2c_width() argument
445 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_width()
446 dim = c2c_fmt->dim; in c2c_width()
452 c2c_fmt->dim->width; in c2c_width()
459 struct c2c_fmt *c2c_fmt; in c2c_header() local
464 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_header()
465 dim = c2c_fmt->dim; in c2c_header()
1654 struct c2c_fmt *c2c_fmt; in fmt_free() local
1656 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in fmt_free()
1657 free(c2c_fmt); in fmt_free()
1662 struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt); in fmt_equal()
1663 struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt); in fmt_equal()
1685 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_entry() local
1686 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_entry()
1702 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_cmp() local
1703 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_cmp()
1711 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_collapse() local
1712 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_collapse()
1719 static struct c2c_fmt *get_format(const char *name) in get_format()
1722 struct c2c_fmt *c2c_fmt; in get_format() local
1728 c2c_fmt = zalloc(sizeof(*c2c_fmt)); in get_format()
1729 if (!c2c_fmt) in get_format()
1732 c2c_fmt->dim = dim; in get_format()
1734 fmt = &c2c_fmt->fmt; in get_format()
1748 return c2c_fmt; in get_format()
1753 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_output() local
1755 if (!c2c_fmt) { in c2c_hists__init_output()
1760 perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_output()
1766 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_sort() local
1769 if (!c2c_fmt) { in c2c_hists__init_sort()
1774 dim = c2c_fmt->dim; in c2c_hists__init_sort()
1778 perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_sort()