Searched refs:xmalloc (Results 1 - 25 of 596) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/gdb/gdb/
H A Dgdb_obstack.h27 /* Unless explicitly specified, GDB obstacks always use xmalloc() and
36 #define obstack_chunk_alloc xmalloc
/freebsd-10-stable/libexec/rtld-aout/
H A Dsupport.h33 void *xmalloc __P((size_t));
H A Dsupport.c51 s = xmalloc(len);
63 xmalloc(size_t n) function
/freebsd-10-stable/contrib/groff/src/libs/libxutil/
H A Dxmalloc.c4 char *xmalloc(int n) function
/freebsd-10-stable/contrib/texinfo/lib/
H A Dxstrdup.c32 return strcpy (xmalloc (strlen (string) + 1), string);
H A Dsubstring.c25 char *result = xmalloc (end - start + 1);
H A Dxmalloc.c0 /* xmalloc.c -- safe versions of malloc and realloc.
36 xmalloc (size_t bytes) function
41 memory_error_and_abort ("xmalloc");
/freebsd-10-stable/crypto/openssh/
H A Dxmalloc.h1 /* $OpenBSD: xmalloc.h,v 1.16 2016/02/15 09:47:49 dtucker Exp $ */
20 void *xmalloc(size_t);
/freebsd-10-stable/cddl/contrib/opensolaris/tools/ctf/common/
H A Dmemory.h42 void *xmalloc(size_t);
H A Dmemory.c48 xmalloc(size_t size) function
63 mem = xmalloc(size);
/freebsd-10-stable/contrib/libreadline/
H A Dxmalloc.h0 /* xmalloc.h -- memory allocation that aborts on errors. */
42 extern PTR_T xmalloc PARAMS((size_t));
/freebsd-10-stable/gnu/usr.bin/texinfo/libtxi/
H A DMakefile6 SRCS= substring.c xexit.c xmalloc.c xstrdup.c
/freebsd-10-stable/contrib/gcc/
H A Dggc-none.c40 return xmalloc (size);
46 return xmalloc (size);
/freebsd-10-stable/usr.bin/xlint/common/
H A Dexterns.h47 extern void *xmalloc(size_t);
/freebsd-10-stable/contrib/binutils/ld/
H A Dldmisc.h31 extern void *xmalloc (size_t);
/freebsd-10-stable/gnu/lib/libreadline/history/
H A DMakefile8 SRCS= $(HISTSRC) xmalloc.c
/freebsd-10-stable/gnu/usr.bin/grep/
H A Dexclude.c34 void *xmalloc PARAMS ((size_t));
49 struct exclude *ex = (struct exclude *) xmalloc (sizeof (struct exclude));
52 ex->exclude = (char const **) xmalloc (ex->exclude_alloc * sizeof (char *));
101 buf = xmalloc (buf_alloc);
H A Dxalloc.h59 void *xmalloc PARAMS ((size_t n));
64 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items)))
81 (memcpy (xmalloc (sizeof (*Src) * (Num)), (Src), sizeof (*Src) * (Num)))
/freebsd-10-stable/usr.sbin/nandtool/
H A Dnandtool.h47 void *xmalloc(size_t);
/freebsd-10-stable/libexec/rtld-elf/
H A Dxmalloc.c49 xmalloc(size_t size) function
66 copy = xmalloc(len);
79 mem = xmalloc(size + sizeof(void *) + align - 1);
/freebsd-10-stable/contrib/binutils/opcodes/
H A Darc-ext.c182 char * insn_name = (char *) xmalloc(( (int)*p-5) * sizeof(char));
184 (struct ExtInstruction *) xmalloc(sizeof(struct ExtInstruction));
199 char * core_name = (char *) xmalloc(((int)*p-3) * sizeof(char));
208 char * cc_name = (char *) xmalloc( ((int)*p-3) * sizeof(char));
219 char * aux_name = (char *) xmalloc ( ((int)*p-6) * sizeof(char));
253 arcExtMap = (char *) xmalloc (count);
/freebsd-10-stable/contrib/diff/lib/
H A Dxmalloc.c0 /* xmalloc.c -- malloc with out of memory checking
88 xmalloc (size_t n) function
230 return memset (xmalloc (s), 0, s);
254 return memcpy (xmalloc (s), p, s);
/freebsd-10-stable/usr.bin/csup/
H A Didcache.c168 uidc = xmalloc(sizeof(struct uidc));
176 uidc2 = xmalloc(sizeof(struct uidc));
214 gidc = xmalloc(sizeof(struct gidc));
222 gidc2 = xmalloc(sizeof(struct gidc));
260 uidc = xmalloc(sizeof(struct uidc));
268 uidc2 = xmalloc(sizeof(struct uidc));
309 gidc = xmalloc(sizeof(struct gidc));
317 gidc2 = xmalloc(sizeof(struct gidc));
346 uidtoname = xmalloc(UIDTONAME_SZ * sizeof(struct uidc *));
347 gidtoname = xmalloc(GIDTONAME_S
[all...]
/freebsd-10-stable/contrib/binutils/binutils/
H A Dbucomm.h71 void *xmalloc (size_t);
/freebsd-10-stable/contrib/gcc/config/i386/
H A Dcygwin1.c46 char *s = xmalloc (strlen (*spec_machine) + 3);

Completed in 274 milliseconds

1234567891011>>