HomeSort by: relevance | last modified time | path
    Searched refs:xmalloc (Results 1 - 25 of 63) sorted by relevancy

1 2 3

  /src/sbin/ldconfig/
shlib.h 43 void *xmalloc(size_t);
shlib.c 84 xmalloc(sizeof(_PATH_EMUL_AOUT) + strlen(name));
170 xmalloc(size_t size) function
206 char *result = (char *)xmalloc(len1 + len2 + len3 + 1);
ldconfig.c 127 dir_list = xmalloc(1);
168 aout_conf = xmalloc(sizeof(_PATH_EMUL_AOUT) +
195 cline = xmalloc(len+1);
337 shp = (struct shlib_list *)xmalloc(sizeof *shp);
408 blist = (struct hints_bucket *)xmalloc(n);
414 strtab = (char *)xmalloc(strtab_sz);
579 shp = (struct shlib_list *)xmalloc(sizeof *shp);
  /src/usr.bin/diff/
xmalloc.h 1 /* $OpenBSD: xmalloc.h,v 1.4 2015/11/12 16:30:30 mmcc Exp $ */
22 void *xmalloc(size_t);
Makefile 4 SRCS= diff.c diffdir.c diffreg.c xmalloc.c pr.c
xmalloc.c 1 /* $OpenBSD: xmalloc.c,v 1.10 2019/06/28 05:44:09 deraadt Exp $ */
24 #include "xmalloc.h"
27 xmalloc(size_t size) function
32 errx(2, "xmalloc: zero size");
35 err(2, "xmalloc: allocating %zu bytes", size);
pr.c 39 #include "xmalloc.h"
87 pr->e = xmalloc(sizeof(struct kevent));
  /src/sys/arch/atari/stand/tostools/libtos/
xalloc.c 34 xmalloc(size_t size) function
libtos.h 84 EXTERN void * xmalloc PROTO((size_t));
diskio.c 63 dd = xmalloc(sizeof *dd);
96 buffer = xmalloc(count * dd->bsize);
323 *(result = xmalloc(length)) = '\0';
  /src/usr.bin/xlint/common/
externs.h 51 void *xmalloc(size_t);
mem.c 60 xmalloc(size_t s) function
  /src/usr.bin/sed/
misc.c 66 xmalloc(size_t size) function
82 return (xmalloc(size));
116 oe = xmalloc(s);
extern.h 59 void *xmalloc(size_t);
compile.c 149 appends = xmalloc(sizeof(struct s_appends) * appendnum);
150 match = xmalloc((maxnsub + 1) * sizeof(regmatch_t));
187 *link = cmd = xmalloc(sizeof(struct s_command));
197 cmd->a1 = xmalloc(sizeof(struct s_addr));
204 cmd->a2 = xmalloc(sizeof(struct s_addr));
466 rep = xmalloc(sizeof(regex_t));
628 text = xmalloc(asize);
802 *py = y = xmalloc(sizeof(*y));
889 text = xmalloc(asize);
986 p = xmalloc(len)
    [all...]
  /src/usr.bin/rump_dhcpclient/
common.h 72 void *xmalloc(size_t);
common.c 152 xmalloc(size_t s) function
165 void *value = xmalloc(s);
  /src/usr.bin/crunch/crunchide/
exec_elf32.c 104 xmalloc(size_t size, const char *fn, const char *use) function
195 if ((shdrp = xmalloc(shdrsize, fn, "section header table")) == NULL)
245 if ((symtabp = xmalloc(shdrp[symtabsnum].sh_size, fn, "symbol table"))
253 if ((strtabp = xmalloc(shdrp[strtabsnum].sh_size, fn, "string table"))
263 nstrtabp = xmalloc(nstrtab_size, fn, "new string table");
  /src/libexec/ld.elf_so/
rtldenv.h 37 void *xmalloc(size_t);
xmalloc.c 1 /* $NetBSD: xmalloc.c,v 1.25 2026/01/13 05:26:55 skrll Exp $ */
80 __RCSID("$NetBSD: xmalloc.c,v 1.25 2026/01/13 05:26:55 skrll Exp $");
428 return memset(xmalloc(size), 0, size);
432 xmalloc(size_t size) function
458 copy = xmalloc(len);
  /src/sbin/mount_portal/
conf.c 56 #define ALLOC(ty) (xmalloc(sizeof(ty)))
77 static void *xmalloc(size_t);
109 xmalloc(size_t siz) function
185 p->p_argv = xmalloc(c * sizeof(char *));
  /src/usr.bin/xlint/lint1/
mem1.c 88 struct filename_replacement *r = xmalloc(sizeof(*r));
130 char *name = xmalloc(slen + 1);
134 struct filename *fn = xmalloc(sizeof(*fn));
237 void *mem = xmalloc(size);
  /src/usr.bin/xlint/lint2/
main2.c 95 lname = xmalloc(len + 10);
  /src/usr.bin/gencat/
gencat.c 125 static void *xmalloc(size_t);
249 xmalloc(size_t len) function
285 curline = xmalloc(curlen);
362 msg = xmalloc(clen);
592 msgcat = xmalloc(cat_hdr.__mem);
696 msgcat = xmalloc(msgcat_size);
774 p = xmalloc(sizeof(struct _setT));
815 p = xmalloc(sizeof(struct _msgT));
  /src/sys/arch/atari/stand/tostools/aptck/
diskio.c 63 dd = xmalloc(sizeof *dd);
96 buffer = xmalloc(count * dd->bsize);
323 *(result = xmalloc(length)) = '\0';

Completed in 29 milliseconds

1 2 3