Searched defs:opj_malloc (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopj_malloc.h35 @file opj_malloc.h
38 The functions in opj_malloc.h are internal utilities used for memory management.
55 void* opj_malloc(size_t size);
60 #define opj_aligned_malloc(size) opj_malloc(size)
64 void * OPJ_CALLCONV opj_malloc(size_t size);
68 #define opj_malloc(size) ((size_t)(size) >= (size_t)-0x100 ? NULL : malloc(size)) macro
70 #define opj_malloc(size) malloc(size) macro
153 #define opj_aligned_malloc(size) opj_malloc(size)

Completed in 55 milliseconds