OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:xnmalloc
(Results
1 - 2
of
2
) 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);
/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 2286 milliseconds