Home
last modified time | relevance | path

Searched refs:ereallocz (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/ntp/include/
H A Dntp_stdlib.h110 extern void * ereallocz (void *, size_t, size_t, int);
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, \
[all …]
/freebsd-12.1/contrib/ntp/libntp/
H A Demalloc.c23 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);