mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
7f7c536f23
Eroding a bit more the tools/perf/util/util.h hodpodge header. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-natazosyn9rwjka25tvcnyi0@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
34 lines
647 B
C
34 lines
647 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include "xyarray.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <linux/zalloc.h>
|
|
|
|
struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size)
|
|
{
|
|
size_t row_size = ylen * entry_size;
|
|
struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size);
|
|
|
|
if (xy != NULL) {
|
|
xy->entry_size = entry_size;
|
|
xy->row_size = row_size;
|
|
xy->entries = xlen * ylen;
|
|
xy->max_x = xlen;
|
|
xy->max_y = ylen;
|
|
}
|
|
|
|
return xy;
|
|
}
|
|
|
|
void xyarray__reset(struct xyarray *xy)
|
|
{
|
|
size_t n = xy->entries * xy->entry_size;
|
|
|
|
memset(xy->contents, 0, n);
|
|
}
|
|
|
|
void xyarray__delete(struct xyarray *xy)
|
|
{
|
|
free(xy);
|
|
}
|