Lines Matching refs:ereallocz
110 extern void * ereallocz (void *, size_t, size_t, int);
112 #define erealloczsite(p, n, o, z, f, l) ereallocz((p), (n), (o), (z))
113 #define emalloc(n) ereallocz(NULL, (n), 0, FALSE)
114 #define emalloc_zero(c) ereallocz(NULL, (c), 0, TRUE)
115 #define erealloc(p, c) ereallocz((p), (c), 0, FALSE)
116 #define erealloc_zero(p, n, o) ereallocz((p), (n), (o), TRUE)
124 extern void * ereallocz (void *, size_t, size_t, int,
128 #define erealloczsite ereallocz
129 #define emalloc(c) ereallocz(NULL, (c), 0, FALSE, \
131 #define emalloc_zero(c) ereallocz(NULL, (c), 0, TRUE, \
133 #define erealloc(p, c) ereallocz((p), (c), 0, FALSE, \
135 #define erealloc_zero(p, n, o) ereallocz((p), (n), (o), TRUE, \