hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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);
}