Searched defs:xmalloc (Results 1 - 9 of 9) sorted by relevance

/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
H A Dxmalloc.c0 /* xmalloc.c -- malloc with out of memory checking
35 xmalloc (n) function
49 If P is NULL, run xmalloc.
58 return xmalloc (n);
/external/elfutils/lib/
H A Dxmalloc.c31 xmalloc (n) function
/external/oprofile/libutil/
H A Dop_libiberty.h37 /* Set the program name used by xmalloc. */
43 void * xmalloc(size_t) OP_ATTRIB_MALLOC;
45 /* Reallocate memory without fail. This works like xmalloc. Note,
50 /* Allocate memory without fail and set it to zero. This works like xmalloc */
67 #define xmalloc(s) malloc(s) macro
/external/bison/lib/
H A Dxmalloc.c0 /* xmalloc.c -- malloc with out of memory checking
63 xmalloc (size_t n) function
205 return memset (xmalloc (s), 0, s);
232 return memcpy (xmalloc (s), p, s);
/external/dropbear/
H A Dscpmisc.c27 /* For xmalloc, xfree etc:
41 /*RCSID("OpenBSD: xmalloc.c,v 1.16 2001/07/23 18:21:46 stevesk Exp ");*/
47 xmalloc(size_t size) function
52 fprintf(stderr, "xmalloc: zero size\n");
57 fprintf(stderr, "xmalloc: out of memory (allocating %lu bytes)\n", (u_long) size);
100 cp = xmalloc(len);
/external/dbus/tools/
H A Ddbus-cleanup-sockets.c51 xmalloc (size_t bytes) function
123 se = xmalloc (sizeof (SocketEntry));
126 se->name = xmalloc (len);
165 entries = xmalloc (sizeof (SocketEntry*) * allocated);
/external/dhcpcd/
H A Dcommon.c280 xmalloc(size_t s) function
294 void *value = xmalloc(s);
/external/e2fsprogs/intl/
H A Drelocatable.c43 # define xmalloc malloc macro
119 memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1);
203 q = (char *) xmalloc (p - curr_pathname + 1);
263 curr_prefix = (char *) xmalloc (curr_prefix_len + 1);
433 (char *) xmalloc (curr_prefix_len + strlen (pathname_tail) + 1);
/external/elfcopy/
H A Ddwarf.c62 static void *xmalloc(size_t sz);
3126 fc = xmalloc (sizeof (Frame_Chunk));
3133 fc->col_type = xmalloc (sizeof (short int));
3134 fc->col_offset = xmalloc (sizeof (int));
3258 fc->col_type = xmalloc (sizeof (short int));
3259 fc->col_offset = xmalloc (sizeof (int));
3603 rs = xmalloc (sizeof (Frame_Chunk));
3811 xmalloc(size_t size) function
3831 return xmalloc (nmemb * size);

Completed in 81 milliseconds