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

1234567891011>>

/haiku-buildtools/legacy/gcc/texinfo/lib/
H A Dxstrdup.c29 char *xmalloc (size_t);
32 char *xmalloc ();
41 return strcpy (xmalloc (strlen (string) + 1), string);
H A DMakefile.am9 libtxi_a_SOURCES = getopt.c getopt.h getopt1.c system.h xmalloc.c xstrdup.c
H A Dxmalloc.c0 /* xmalloc.c -- safe versions of malloc and realloc */
45 xmalloc (bytes) function
51 memory_error_and_abort ("xmalloc");
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A D20041122-1.c5 extern void *xmalloc (size_t) __attribute__ ((__malloc__));
23 tos = worklist = xmalloc (sizeof (basic_block) * n_basic_blocks);
/haiku-buildtools/legacy/binutils/ld/
H A Dldmisc.h31 extern void *xmalloc (size_t);
/haiku-buildtools/legacy/gcc/libiberty/
H A Dxstrdup.c1 /* xstrdup.c -- Duplicate a string in memory, using xmalloc.
20 register char *ret = xmalloc (len);
/haiku-buildtools/legacy/gcc/gcc/
H A Dcppalloc.c1 /* Part of CPP library. (memory allocation - xmalloc etc)
39 xmalloc (size) function
78 char *output = xmalloc (size + 1);
H A Dgetpwd.c49 for (s = GUESSPATHLEN; ! getcwd (p = xmalloc (s), s); s *= 2)
82 pwd = getcwd (xmalloc (MAXPATHLEN + 1), MAXPATHLEN + 1
H A Dgencheck.c66 /* FIXME: We only need an xmalloc definition because we are forced to
70 xmalloc (nbytes) function
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr47411.c11 extern void *xmalloc (size_t) __attribute__ ((__malloc__));
35 = ((struct mode_data *) xmalloc (sizeof (struct mode_data)));
/haiku-buildtools/legacy/gcc/gcc/config/i386/
H A Dxm-cygwin.h46 _posixepath = (char *) xmalloc \
/haiku-buildtools/binutils/libiberty/
H A Dxvasprintf.c58 result = (char *) xmalloc (total_width);
H A Dxmemdup.c1 /* xmemdup.c -- Duplicate a memory buffer, using xmalloc.
37 PTR output = xmalloc (alloc_size);
/haiku-buildtools/gcc/gcc/
H A Dggc-none.c48 return xmalloc (size);
/haiku-buildtools/gcc/libiberty/
H A Dxvasprintf.c58 result = (char *) xmalloc (total_width);
H A Dargv.c75 copy = (char **) xmalloc ((argc + 1) * sizeof (char *));
81 copy[argc] = (char *) xmalloc (len + 1);
145 is obtained from @code{xmalloc}. All of the memory can be returned to the
187 copybuf = (char *) xmalloc (strlen (input) + 1);
201 nargv = (char **) xmalloc (maxargc * sizeof (char *));
415 buffer = (char *) xmalloc (pos * sizeof (char) + 1);
430 file_argv = (char **) xmalloc (sizeof (char *));
/haiku-buildtools/binutils/ld/
H A Dldmisc.h31 extern void *xmalloc (size_t);
/haiku-buildtools/gcc/gcc/ada/
H A Drtinit.c47 #define xmalloc(S) malloc (S) macro
102 fullvalue = (LPWSTR) xmalloc ((vallen + 1) * sizeof(TCHAR));
109 fullvalue = (LPWSTR) xmalloc ((dirlen + vallen + 1) * sizeof(TCHAR));
130 (*argv)[*index] = (char *) xmalloc (size + sizeof(TCHAR));
229 gnat_argv = (char **) xmalloc ((last) * sizeof (char *));
265 dir = (LPWSTR) xmalloc ((n + 1) * sizeof (TCHAR));
H A Dinitialize.c47 #define xmalloc(S) malloc (S) macro
/haiku-buildtools/legacy/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);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20001203-2.c40 void * xmalloc (unsigned int z);
87 }) : xmalloc (sizeof (struct field)));
96 void * xmalloc (unsigned int z) function
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tm/
H A D20100610.c12 extern void *xmalloc(int) __attribute__((transaction_safe));
73 elementPtr = (element_t*)xmalloc(sizeof(element_t));
85 elementPtr = (element_t*)xmalloc(sizeof(element_t));
/haiku-buildtools/legacy/binutils/gprof/
H A Dsearch_list.c46 new_el = (Search_List_Elem *) xmalloc (sizeof (*new_el) + len);
/haiku-buildtools/legacy/gcc/gcc/java/
H A Dbuffer.c41 bufp->data = (unsigned char*) xmalloc (size);
/haiku-buildtools/legacy/gcc/texinfo/info/
H A Dxmalloc.c0 /* xmalloc.c -- safe versions of malloc and realloc */
45 xmalloc (bytes) function
51 memory_error_and_abort ("xmalloc");

Completed in 306 milliseconds

1234567891011>>