HomeSort by relevance Sort by last modified time
    Searched refs:XNMALLOC (Results 1 - 4 of 4) sorted by null

  /external/bison/lib/
xalloc.h 78 /* extern t *XNMALLOC (size_t n, typename t); */
79 #define XNMALLOC(n, t) \
80 ((t *) (sizeof (t) == 1 ? xmalloc (n) : xnmalloc (n, sizeof (t))))
97 XALLOC_INLINE void *xnmalloc (size_t n, size_t s)
100 xnmalloc (size_t n, size_t s) function
217 return XNMALLOC (n, char);
fatal-signal.c 225 XNMALLOC (new_actions_allocated, actions_entry_t);
w32spawn.h 140 new_argv = XNMALLOC (1 + argc + 1, char *);
  /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 434 milliseconds