Go to the documentation of this file.
43 void*
grk_calloc(
size_t numOfElements,
size_t sizeOfElements);
67 #if defined(__GNUC__) && !defined(GROK_SKIP_POISON)
68 #pragma GCC poison malloc calloc realloc free
void grk_aligned_free(void *ptr)
void grk_free(void *m)
Deallocates or frees a memory block.
uint32_t grk_make_aligned_width(uint32_t width)
void * grk_malloc(size_t size)
Allocate an uninitialized memory block.
Copyright (C) 2016-2020 Grok Image Compression Inc.
Definition: BitIO.h:27
void * grk_aligned_malloc(size_t size)
Allocate memory aligned to a 16 byte boundary.
void * grk_realloc(void *m, size_t s)
Reallocate memory blocks.
void * grk_calloc(size_t numOfElements, size_t sizeOfElements)
Allocate a memory block with elements initialized to 0.