Lines Matching refs:ereallocz
126 extern void * ereallocz (void *, size_t, size_t, int);
128 #define erealloczsite(p, n, o, z, f, l) ereallocz((p), (n), (o), (z))
129 #define emalloc(n) ereallocz(NULL, (n), 0, FALSE)
130 #define emalloc_zero(c) ereallocz(NULL, (c), 0, TRUE)
131 #define erealloc(p, c) ereallocz((p), (c), 0, FALSE)
132 #define erealloc_zero(p, n, o) ereallocz((p), (n), (o), TRUE)
140 extern void * ereallocz (void *, size_t, size_t, int,
144 #define erealloczsite ereallocz
145 #define emalloc(c) ereallocz(NULL, (c), 0, FALSE, \
147 #define emalloc_zero(c) ereallocz(NULL, (c), 0, TRUE, \
149 #define erealloc(p, c) ereallocz((p), (c), 0, FALSE, \
151 #define erealloc_zero(p, n, o) ereallocz((p), (n), (o), TRUE, \