/src/usr.bin/make/ |
make_malloc.h | 31 void *bmake_realloc(void *, size_t) MAKE_ATTR_USE; 37 #define bmake_realloc(p, n) erealloc(p, n) macro
|
make_malloc.c | 83 bmake_realloc(void *ptr, size_t size) function in typeref:typename:void *
|
buf.c | 85 buf->data = bmake_realloc(buf->data, buf->cap); 98 buf->data = bmake_realloc(buf->data, buf->cap);
|
lst.c | 260 v->items = bmake_realloc(v->items, v->cap * v->itemSize);
|
str.h | 245 buf->data = bmake_realloc(buf->data, buf->cap);
|
str.c | 200 words = bmake_realloc(words,
|
cond.c | 1142 cond_states = bmake_realloc(cond_states,
|
meta.c | 880 p = bmake_realloc(buf, newsz);
|
var.c | 358 evalStack.elems = bmake_realloc(evalStack.elems, 904 newenv = bmake_realloc(environ, 2 * sizeof(char *));
|
/src/usr.bin/make/unit-tests/ |
modmisc.mk | 59 # Cover the bmake_realloc in Substring_Words.
|