Home
last modified time | relevance | path

Searched refs:xyarray (Results 1 – 8 of 8) sorted by relevance

/Linux-v4.19/tools/perf/util/
Dxyarray.h7 struct xyarray { struct
16 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size); argument
17 void xyarray__delete(struct xyarray *xy);
18 void xyarray__reset(struct xyarray *xy);
20 static inline void *xyarray__entry(struct xyarray *xy, int x, int y) in xyarray__entry()
25 static inline int xyarray__max_y(struct xyarray *xy) in xyarray__max_y()
30 static inline int xyarray__max_x(struct xyarray *xy) in xyarray__max_x()
Dxyarray.c7 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size) in xyarray__new()
10 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); in xyarray__new()
23 void xyarray__reset(struct xyarray *xy) in xyarray__reset()
30 void xyarray__delete(struct xyarray *xy) in xyarray__delete()
Dcounts.h22 struct xyarray *values;
Dcounts.c13 struct xyarray *values; in perf_counts__new()
Dpython-ext-sources22 util/xyarray.c
Devsel.h95 struct xyarray *fd;
96 struct xyarray *sample_id;
DBuild66 libperf-y += xyarray.o
Dbpf-loader.c1418 struct xyarray *xy = evsel->fd; in apply_config_evsel_for_key()