Lines Matching refs:c2c_fmt

435 struct c2c_fmt {  struct
459 struct c2c_fmt *c2c_fmt; in c2c_width() argument
462 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_width()
463 dim = c2c_fmt->dim; in c2c_width()
469 c2c_fmt->dim->width; in c2c_width()
476 struct c2c_fmt *c2c_fmt; in c2c_header() local
481 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_header()
482 dim = c2c_fmt->dim; in c2c_header()
1883 struct c2c_fmt *c2c_fmt; in fmt_free() local
1885 c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in fmt_free()
1886 free(c2c_fmt); in fmt_free()
1891 struct c2c_fmt *c2c_a = container_of(a, struct c2c_fmt, fmt); in fmt_equal()
1892 struct c2c_fmt *c2c_b = container_of(b, struct c2c_fmt, fmt); in fmt_equal()
1914 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_entry() local
1915 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_entry()
1931 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_cmp() local
1932 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_cmp()
1940 struct c2c_fmt *c2c_fmt = container_of(fmt, struct c2c_fmt, fmt); in c2c_se_collapse() local
1941 struct c2c_dimension *dim = c2c_fmt->dim; in c2c_se_collapse()
1948 static struct c2c_fmt *get_format(const char *name) in get_format()
1951 struct c2c_fmt *c2c_fmt; in get_format() local
1957 c2c_fmt = zalloc(sizeof(*c2c_fmt)); in get_format()
1958 if (!c2c_fmt) in get_format()
1961 c2c_fmt->dim = dim; in get_format()
1963 fmt = &c2c_fmt->fmt; in get_format()
1977 return c2c_fmt; in get_format()
1982 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_output() local
1984 if (!c2c_fmt) { in c2c_hists__init_output()
1989 perf_hpp_list__column_register(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_output()
1995 struct c2c_fmt *c2c_fmt = get_format(name); in c2c_hists__init_sort() local
1998 if (!c2c_fmt) { in c2c_hists__init_sort()
2003 dim = c2c_fmt->dim; in c2c_hists__init_sort()
2007 perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt); in c2c_hists__init_sort()