Searched refs:ereallocz (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/ntp/include/ |
H A D | ntp_stdlib.h | 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(NUL [all...] |
/freebsd/contrib/ntp/libntp/ |
H A D | emalloc.c | 23 ereallocz( in ereallocz() function 110 return ereallocz(optr, extra + (size * nmemb), 0, TRUE); in oreallocarrayxz() 112 return ereallocz(optr, extra + (size * nmemb), 0, TRUE, file, line); in oreallocarrayxz() 130 copy = ereallocz(NULL, bytes, 0, FALSE in estrdup_impl() 146 return ereallocz(NULL, newsz, 0, FALSE);
|