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