/external/oprofile/libutil/ |
op_libiberty.c | 18 /* some system have a valid libiberty without xcalloc */ 19 void * xcalloc(size_t n_elem, size_t sz) function 32 void * output = xcalloc(1, alloc_size);
|
op_libiberty.h | 51 void * xcalloc(size_t, size_t) OP_ATTRIB_MALLOC;
|
/external/openssh/ |
xmalloc.c | 41 xcalloc(size_t nmemb, size_t size) function 46 fatal("xcalloc: zero size"); 48 fatal("xcalloc: nmemb * size > SIZE_T_MAX"); 51 fatal("xcalloc: out of memory (allocating %lu bytes)",
|
auth-skey.c | 66 *prompts = xcalloc(*numprompts, sizeof(char *)); 67 *echo_on = xcalloc(*numprompts, sizeof(u_int));
|
sandbox-null.c | 50 box = xcalloc(1, sizeof(*box));
|
xmalloc.h | 20 void *xcalloc(size_t, size_t);
|
auth-bsdauth.c | 83 *prompts = xcalloc(*numprompts, sizeof(char *)); 84 *echo_on = xcalloc(*numprompts, sizeof(u_int));
|
groupaccess.c | 66 groups_bygid = xcalloc(ngroups, sizeof(*groups_bygid)); 67 groups_byname = xcalloc(ngroups, sizeof(*groups_byname));
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_decode_sequence_flexi.c | 90 l = XCALLOC(1, sizeof(*l)); 96 l->next = XCALLOC(1, sizeof(*l)); 110 l->data = XCALLOC(1, sizeof(int)); 145 if ((l->data = XCALLOC(1, l->size)) == NULL) { 165 if ((l->data = XCALLOC(1, l->size)) == NULL) { 201 if ((l->data = XCALLOC(len, sizeof(unsigned long))) == NULL) { 228 if ((l->data = XCALLOC(sizeof(wchar_t), l->size)) == NULL) { 248 if ((l->data = XCALLOC(1, l->size)) == NULL) { 268 if ((l->data = XCALLOC(1, l->size)) == NULL) { 288 if ((l->data = XCALLOC(1, sizeof(ltc_utctime))) == NULL) [all...] |
der_decode_sequence_multi.c | 82 list = XCALLOC(sizeof(*list), x);
|
der_encode_sequence_multi.c | 82 list = XCALLOC(sizeof(*list), x);
|
/external/bison/src/ |
nullable.c | 64 size_t *rcount = xcalloc (nrules, sizeof *rcount); 67 rule_list **rsets = xcalloc (nvars, sizeof *rsets); 72 nullable = xcalloc (nvars, sizeof *nullable);
|
Sbitset.c | 30 return xcalloc (1, Sbitset__nbytes (nbits));
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_custom.h | 20 #ifndef XCALLOC 24 #define XCALLOC calloc
|
/external/dropbear/libtomcrypt/src/pk/ecc/ |
ltc_ecc_points.c | 33 p = XCALLOC(1, sizeof(*p));
|
/external/bison/lib/ |
xmalloc.c | 81 to xcalloc (N, S). */ 93 xcalloc (size_t n, size_t s) function
|
xalloc.h | 58 void *xcalloc (size_t n, size_t s) 89 /* extern t *XCALLOC (size_t n, typename t); */ 90 #define XCALLOC(n, t) \ 91 ((t *) (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))))
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/set/ |
der_encode_setof.c | 77 buf = XCALLOC(1, *outlen); 89 edges = XCALLOC(inlen, sizeof(*edges));
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
xmalloc.c | 77 to xcalloc (N, S). */ 89 xcalloc (size_t n, size_t s) function
|
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/mac/f9/ |
f9_memory.c | 48 f9 = XCALLOC(1, sizeof(*f9));
|
/external/dropbear/libtomcrypt/src/mac/xcbc/ |
xcbc_memory.c | 48 xcbc = XCALLOC(1, sizeof(*xcbc));
|
xcbc_init.c | 47 skey = XCALLOC(1, sizeof(*skey));
|
/external/dropbear/libtomcrypt/src/math/ |
rand_prime.c | 46 buf = XCALLOC(1, len);
|
/external/oprofile/m4/ |
binutils.m4 | 8 AC_CHECK_FUNCS(xcalloc)
|