Lines Matching defs:nbytes
40 void *alloc_realloc(void *ptr, size_t nbytes, const char *fname, int line);
41 void *alloc_malloc(size_t nbytes, const char *fname, int line);
49 #define MALLOC(nbytes) alloc_malloc(nbytes, __FILE__, __LINE__)
50 #define REALLOC(ptr, nbytes) alloc_realloc(ptr, nbytes, __FILE__, __LINE__)
56 #define MALLOC(nbytes) alloc_malloc(nbytes, "???", __LINE__)
57 #define REALLOC(ptr, nbytes) alloc_realloc(ptr, nbytes, "???", __LINE__)