Searched refs:bmake_malloc (Results 1 – 19 of 19) sorted by relevance
47 bmake_malloc(size_t len) in bmake_malloc() function64 p = bmake_malloc(size); in bmake_strdup()72 char *p = bmake_malloc(len + 1); in bmake_strldup()
86 char *result = bmake_malloc(len1 + len2 + 1); in str_concat2()99 char *result = bmake_malloc(len1 + len2 + len3 + 1); in str_concat3()134 words_buf = bmake_malloc(str_len + 1); in Substring_Words()137 words = bmake_malloc((words_cap + 1) * sizeof(words[0])); in Substring_Words()286 words.words = bmake_malloc((swords.len + 1) * sizeof(words.words[0])); in Str_Words()
30 void *bmake_malloc(size_t) MAKE_ATTR_USE;36 #define bmake_malloc(n) emalloc(n) macro
42 ListNode *ln = bmake_malloc(sizeof *ln); in LstNodeNew()55 List *list = bmake_malloc(sizeof *list); in Lst_New()266 v->items = bmake_malloc(v->cap * v->itemSize); in Vector_Init()
144 HashEntry **buckets = bmake_malloc(sizeof *buckets * n); in HashTable_Init()219 HashEntry **newBuckets = bmake_malloc(sizeof *newBuckets * newSize); in HashTable_Enlarge()265 he = bmake_malloc(sizeof *he + (size_t)(keyEnd - key)); in HashTable_CreateEntry()
225 char *result = bmake_malloc(len1 + 1 + len3 + 1 + 1); in FullName()536 ar = bmake_malloc(sizeof *ar); in ArchStatMember()614 struct ar_hdr *cached_hdr = bmake_malloc( in ArchStatMember()677 ar->fnametab = bmake_malloc(size); in ArchSVR4Entry()
147 buf->data = bmake_malloc(cap); in Buf_InitSize()
1114 cond_states = bmake_malloc( in Cond_EvalLine()1292 guard = bmake_malloc(sizeof(*guard)); in Cond_ExtractGuard()1306 guard = bmake_malloc(sizeof(*guard)); in Cond_ExtractGuard()
782 char *esc = bmake_malloc(strlen(cmd) * 2 + 1); in EscapeShellDblQuot()2258 job_table = bmake_malloc((size_t)opts.maxJobs * sizeof *job_table); in Job_Init()2300 fds = bmake_malloc(sizeof *fds * nfds); in Job_Init()2301 jobByFdIndex = bmake_malloc(sizeof *jobByFdIndex * nfds); in Job_Init()2567 shell = bmake_malloc(sizeof *shell); in Job_ParseShell()
290 CachedDir *dir = bmake_malloc(sizeof *dir); in CachedDir_New()442 cst = bmake_malloc(sizeof *cst); in cached_stats()759 char *s = bmake_malloc(s_len + 1); in concat3()
266 buf->data = bmake_malloc(buf->cap); in LazyBuf_Add()
353 Var *var = bmake_malloc(sizeof *var); in VarNew()817 newenv = bmake_malloc(2 * sizeof(char *)); in ClearEnv()1550 char *errbuf = bmake_malloc(errlen); in RegexError()1713 words.words = bmake_malloc(sizeof(words.words[0])); in VarSelectWords()1879 buf = bmake_malloc(9); in Hash()2770 pattern = bmake_malloc((size_t)(endpat - (mod + 1)) + 1); in ParseModifier_Match()3157 res = bmake_malloc(len + 1); in str_toupper()3171 res = bmake_malloc(len + 1); in str_tolower()
179 gn = bmake_malloc(sizeof *gn); in GNode_New()
94 ForLoop *f = bmake_malloc(sizeof *f); in ForLoop_New()
835 SearchPath *path = bmake_malloc(sizeof *path); in SearchPath_New()
465 Suffix *suff = bmake_malloc(sizeof *suff); in Suffix_New()1003 Candidate *cand = bmake_malloc(sizeof *cand); in Candidate_New()
170 exploded = bmake_malloc((size_t)(p - flags) * 3 + 1); in explode()220 fname = bmake_malloc(len + 20); in MainParseArgDebugFile()
1128 buf = bmake_malloc(bufsz); in meta_oodate()
2226 - use bmake_malloc() where NULL is not tollerated3500 o bmake_malloc et al moved to their own .c3541 o make now uses bmake_malloc etc so that it can build natively