git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
29 lines
513 B
C
29 lines
513 B
C
#include "xyarray.h"
|
|
#include "util.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;
|
|
}
|
|
|
|
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);
|
|
}
|