Searched defs:nelem (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
H A Dutfdef.h27 #define nelem(x) (sizeof(x)/sizeof((x)[0])) macro
/external/libutf/
H A Dutfdef.h13 #define nelem(x) (sizeof(x)/sizeof((x)[0])) macro
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dxmalloc.c41 static /*@only@*/ void *def_xcalloc(size_t nelem, size_t elsize);
52 /*@only@*/ void * (*yasm_xcalloc) (size_t nelem, size_t elsize) = def_xcalloc;
77 def_xcalloc(size_t nelem, size_t elsize) argument
81 if (nelem == 0 || elsize == 0)
82 nelem = elsize = 1;
84 newmem = calloc(nelem, elsize);

Completed in 959 milliseconds