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

  /ndk/sources/host-tools/sed-4.2.1/lib/
xalloc.h 57 void *xcalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
100 /* extern t *XCALLOC (size_t n, typename t); */
101 # define XCALLOC(n, t) \
102 ((t *) (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))))
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 20 #ifndef XCALLOC
24 #define XCALLOC calloc
  /external/dropbear/libtommath/
tommath.h 114 #define XCALLOC calloc
119 extern void *XCALLOC(size_t n, size_t s);

Completed in 54 milliseconds