HomeSort by relevance Sort by last modified time
    Searched defs:xmalloc (Results 1 - 15 of 15) sorted by null

  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 0 /* 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/
xmalloc.c 44 xmalloc (n) function
  /external/oprofile/libutil/
op_libiberty.h 37 /* 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
  /ndk/sources/host-tools/sed-4.2.1/lib/
xmalloc.c 0 /* xmalloc.c -- malloc with out of memory checking
43 xmalloc (size_t n) function
82 return memset (xmalloc (s), 0, s);
109 return memcpy (xmalloc (s), p, s);
  /external/openssh/
xmalloc.c 1 /* $OpenBSD: xmalloc.c,v 1.27 2006/08/03 03:34:42 deraadt Exp $ */
24 #include "xmalloc.h"
28 xmalloc(size_t size) function
33 fatal("xmalloc: zero size");
36 fatal("xmalloc: out of memory (allocating %lu bytes)", (u_long) size);
91 cp = xmalloc(len);
  /external/bison/lib/
xmalloc.c 0 /* 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/
scpmisc.c 27 /* 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/dhcpcd/
common.c 229 xmalloc(size_t s) function
243 void *value = xmalloc(s);
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 70 #define xmalloc(_nn) \ macro
71 VG_(arena_malloc)(VG_AR_DEMANGLE, "m_demangle.xmalloc", (_nn))
88 ((_Ty *) xmalloc(sizeof (_Ty) * (_Nn)))
97 ((_Ty *) xmalloc(sizeof (_Ty)))
  /external/dbus/tools/
dbus-cleanup-sockets.c 51 xmalloc (size_t bytes) function
123 se = xmalloc (sizeof (SocketEntry));
126 se->name = xmalloc (len);
165 entries = xmalloc (sizeof (SocketEntry*) * allocated);
  /external/e2fsprogs/intl/
relocatable.c 43 # 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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xthreads.h 36 #ifndef xmalloc
37 #define xmalloc malloc macro
285 #define xcondition_malloc() (xcondition_t)xmalloc(sizeof(xcondition_rec))
291 #define xmutex_malloc() (xmutex_t)xmalloc(sizeof(xmutex_rec))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xthreads.h 36 #ifndef xmalloc
37 #define xmalloc malloc macro
285 #define xcondition_malloc() (xcondition_t)xmalloc(sizeof(xcondition_rec))
291 #define xmutex_malloc() (xmutex_t)xmalloc(sizeof(xmutex_rec))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xthreads.h 36 #ifndef xmalloc
37 #define xmalloc malloc macro
285 #define xcondition_malloc() (xcondition_t)xmalloc(sizeof(xcondition_rec))
291 #define xmutex_malloc() (xmutex_t)xmalloc(sizeof(xmutex_rec))
  /ndk/sources/host-tools/make-3.81/
misc.c 177 result = (char *) xmalloc (len1 + len2 + len3 + 1);
339 #undef xmalloc function
344 xmalloc (unsigned int size)
395 register char *out = (char *) xmalloc (length + 1);
496 struct dep *d = (struct dep *) xmalloc (sizeof (struct dep));
528 c = (struct dep *) xmalloc (sizeof (struct dep));
334 #undef xmalloc macro

Completed in 416 milliseconds