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

  /external/bison/lib/
xmalloc.c 55 xnmalloc (size_t n, size_t s) function
  /ndk/sources/host-tools/sed-4.2.1/lib/
xalloc.h 89 /* extern t *XNMALLOC (size_t n, typename t); */
90 # define XNMALLOC(n, t) \
91 ((t *) (sizeof (t) == 1 ? xmalloc (n) : xnmalloc (n, sizeof (t))))
108 void *xnmalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
119 static_inline void *xnmalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
121 xnmalloc (size_t n, size_t s) function
235 return XNMALLOC (n, char);

Completed in 90 milliseconds