Searched refs:bmake_malloc (Results 1 – 20 of 20) sorted by relevance
47 bmake_malloc(size_t len) in bmake_malloc() function67 p = bmake_malloc(size); in bmake_strdup()75 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()138 words_buf = bmake_malloc(str_len + 1); in Substring_Words()141 words = bmake_malloc((words_cap + 1) * sizeof(words[0])); in Substring_Words()290 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
139 HashEntry **buckets = bmake_malloc(sizeof *buckets * n); in HashTable_Init()227 HashEntry **newBuckets = bmake_malloc(sizeof *newBuckets * newSize); in HashTable_Enlarge()272 he = bmake_malloc(sizeof *he + (size_t)(keyEnd - key)); in HashTable_CreateEntry()
42 ListNode *ln = bmake_malloc(sizeof *ln); in LstNodeNew() 248 v->items = bmake_malloc(v->cap * v->itemSize); in Vector_Init()
482 ar = bmake_malloc(sizeof *ar); in ArchStatMember()552 struct ar_hdr *cached_hdr = bmake_malloc( in ArchStatMember()612 ar->fnametab = bmake_malloc(size); in ArchSVR4Entry()
147 buf->data = bmake_malloc(cap); in Buf_InitSize()
1047 cond_states = bmake_malloc( in Cond_EvalLine()1207 guard = bmake_malloc(sizeof(*guard)); in Cond_ExtractGuard()1220 guard = bmake_malloc(sizeof(*guard)); in Cond_ExtractGuard()
276 CachedDir *dir = bmake_malloc(sizeof *dir); in CachedDir_New()428 cst = bmake_malloc(sizeof *cst); in cached_stats()744 char *s = bmake_malloc(s_len + 1); in concat3()
866 char *esc = bmake_malloc(strlen(cmd) * 2 + 1); in EscapeShellDblQuot()2144 job_table = bmake_malloc((size_t)opts.maxJobs * sizeof *job_table); in Job_Init()2185 fds = bmake_malloc(sizeof *fds * nfds); in Job_Init()2186 jobByFdIndex = bmake_malloc(sizeof *jobByFdIndex * nfds); in Job_Init()2408 shell = bmake_malloc(sizeof *shell); in Job_ParseShell()
255 buf->data = bmake_malloc(buf->cap); in LazyBuf_Add()
437 Var *var = bmake_malloc(sizeof *var); in VarNew()925 newenv = bmake_malloc(2 * sizeof(char *)); in ClearEnv()1606 char *errbuf = bmake_malloc(errlen); in RegexError()1761 words.words = bmake_malloc(sizeof(words.words[0])); in VarSelectWords()1917 buf = bmake_malloc(9); in Hash()2790 pattern = bmake_malloc((size_t)(endpat - (mod + 1)) + 1); in ParseModifier_Match()3175 char *res = bmake_malloc(n); in str_totitle()3190 char *res = bmake_malloc(n); in str_toupper()3200 char *res = bmake_malloc(n); in str_tolower()
94 ForLoop *f = bmake_malloc(sizeof *f); in ForLoop_New()
185 gn = bmake_malloc(sizeof *gn); in GNode_New()
445 Suffix *suff = bmake_malloc(sizeof *suff); in Suffix_New()966 Candidate *cand = bmake_malloc(sizeof *cand); in Candidate_New()
171 exploded = bmake_malloc((size_t)(p - flags) * 3 + 1); in explode()221 fname = bmake_malloc(len + 20); in MainParseArgDebugFile()
861 SearchPath *path = bmake_malloc(sizeof *path); in SearchPath_New()
1134 buf = bmake_malloc(bufsz); in meta_oodate()
318 List *list = bmake_malloc(sizeof *list); in Lst_New()
3052 - use bmake_malloc() where NULL is not tollerated4326 o bmake_malloc et al moved to their own .c4367 o make now uses bmake_malloc etc so that it can build natively