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

/freebsd-11.0-release/contrib/ntp/libntp/
H A Demalloc.c23 ereallocz( function
110 return ereallocz(optr, extra + (size * nmemb), 0, TRUE);
112 return ereallocz(optr, extra + (size * nmemb), 0, TRUE, file, line);
130 copy = ereallocz(NULL, bytes, 0, FALSE
146 return ereallocz(NULL, newsz, 0, FALSE);
/freebsd-11.0-release/contrib/ntp/include/
H A Dntp_stdlib.h107 extern void * ereallocz (void *, size_t, size_t, int);
109 #define erealloczsite(p, n, o, z, f, l) ereallocz((p), (n), (o), (z))
110 #define emalloc(n) ereallocz(NULL, (n), 0, FALSE)
111 #define emalloc_zero(c) ereallocz(NULL, (c), 0, TRUE)
112 #define erealloc(p, c) ereallocz((p), (c), 0, FALSE)
113 #define erealloc_zero(p, n, o) ereallocz((p), (n), (o), TRUE)
121 extern void * ereallocz (void *, size_t, size_t, int,
125 #define erealloczsite ereallocz
126 #define emalloc(c) ereallocz(NULL, (c), 0, FALSE, \
128 #define emalloc_zero(c) ereallocz(NUL
[all...]

Completed in 106 milliseconds