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

  /external/bison/lib/
xalloc.h 54 void *xmalloc (size_t s)
74 /* extern t *XMALLOC (typename t); */
75 #define XMALLOC(t) ((t *) xmalloc (sizeof (t)))
80 ((t *) (sizeof (t) == 1 ? xmalloc (n) : xnmalloc (n, sizeof (t))))
104 return xmalloc (n * s);
209 /* Return a pointer to a new buffer of N bytes. This is like xmalloc,
  /external/wpa_supplicant_8/src/tls/
libtommath.c 87 #define XMALLOC os_malloc
380 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
    [all...]

Completed in 674 milliseconds