Home | History | Annotate | Download | only in include

Lines Matching refs:MALLOC

64 #define MALLOC(n, tag) malloc(n)
69 #define NEW(type, tag) ((type*)MALLOC(sizeof(type), tag))
85 #define malloc #error
99 * Portable malloc()
101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__))
104 * Portable malloc()
106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes))
138 #define NEW(type, tag) ((type*) MALLOC(sizeof(type), tag))
162 * Allocates specified number of bytes, similar to malloc but initializes the