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

1234567891011>>

/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdb_obstack.h27 /* Unless explicitly specified, GDB obstacks always use xmalloc() and
36 #define obstack_chunk_alloc xmalloc
/freebsd-9.3-release/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-9.3-release/contrib/groff/src/libs/libxutil/
H A Dxmalloc.c4 char *xmalloc(int n) function
/freebsd-9.3-release/contrib/dtc/
H A Dutil.c25 char *dup = xmalloc(len);
H A Dutil.h33 static inline void *xmalloc(size_t len) function
/freebsd-9.3-release/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-9.3-release/crypto/openssh/
H A Dxmalloc.h1 /* $OpenBSD: xmalloc.h,v 1.14 2013/05/17 00:13:14 djm Exp $ */
19 void *xmalloc(size_t);
H A Drsa.c70 #include "xmalloc.h"
84 outbuf = xmalloc(olen);
87 inbuf = xmalloc(ilen);
110 outbuf = xmalloc(olen);
113 inbuf = xmalloc(ilen);
/freebsd-9.3-release/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-9.3-release/contrib/libreadline/
H A Dxmalloc.h0 /* xmalloc.h -- memory allocation that aborts on errors. */
42 extern PTR_T xmalloc PARAMS((size_t));
/freebsd-9.3-release/gnu/usr.bin/texinfo/libtxi/
H A DMakefile6 SRCS= substring.c xexit.c xmalloc.c xstrdup.c
/freebsd-9.3-release/contrib/gcc/
H A Dggc-none.c40 return xmalloc (size);
46 return xmalloc (size);
/freebsd-9.3-release/contrib/cvs/lib/
H A Dxgetwd.c32 char *xmalloc ();
49 cwd = xmalloc (path_max);
/freebsd-9.3-release/usr.bin/xlint/common/
H A Dexterns.h47 extern void *xmalloc(size_t);
/freebsd-9.3-release/contrib/binutils/ld/
H A Dldmisc.h31 extern void *xmalloc (size_t);
/freebsd-9.3-release/gnu/lib/libreadline/history/
H A DMakefile8 SRCS= $(HISTSRC) xmalloc.c
/freebsd-9.3-release/gnu/usr.bin/cvs/cvs/
H A Dprepend_args.c74 char *buf = xmalloc (strlen (options) + 1);
78 char **pp = (char **) xmalloc ((prepended + argc + 1) * sizeof *pp);
/freebsd-9.3-release/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-9.3-release/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-9.3-release/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);

Completed in 235 milliseconds

1234567891011>>