Lines Matching defs:xy
18 void xyarray__delete(struct xyarray *xy);
19 void xyarray__reset(struct xyarray *xy);
21 static inline void *xyarray__entry(struct xyarray *xy, int x, int y)
23 return &xy->contents[x * xy->row_size + y * xy->entry_size];
26 static inline int xyarray__max_y(struct xyarray *xy)
28 return xy->max_y;
31 static inline int xyarray__max_x(struct xyarray *xy)
33 return xy->max_x;