HomeSort by relevance Sort by last modified time
    Searched full:xmalloc (Results 1 - 25 of 411) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/m4/
xalloc.m4 9 AC_LIBSOURCES([xmalloc.c, xalloc.h])
10 AC_LIBOBJ([xmalloc])
21 # Prerequisites of lib/xmalloc.c.
  /ndk/sources/host-tools/sed-4.2.1/m4/
xalloc.m4 9 AC_LIBOBJ([xmalloc])
21 # Prerequisites of lib/xmalloc.c.
  /external/oprofile/libutil/
op_libiberty.h 37 /* Set the program name used by xmalloc. */
43 void * xmalloc(size_t) OP_ATTRIB_MALLOC;
45 /* Reallocate memory without fail. This works like xmalloc. Note,
50 /* Allocate memory without fail and set it to zero. This works like xmalloc */
67 #define xmalloc(s) malloc(s) macro
op_libiberty.c 21 void * ptr = xmalloc(n_elem * sz);
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 0 /* xmalloc.c -- malloc with out of memory checking
35 xmalloc (n) function
49 If P is NULL, run xmalloc.
58 return xmalloc (n);
  /external/elfutils/lib/
xstrdup.c 26 return strcpy (xmalloc (strlen (string) + 1), string);
xstrndup.c 29 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
  /ndk/sources/host-tools/sed-4.2.1/lib/
xmalloc.c 0 /* xmalloc.c -- malloc with out of memory checking
43 xmalloc (size_t n) function
82 return memset (xmalloc (s), 0, s);
109 return memcpy (xmalloc (s), p, s);
xalloc.h 55 void *xmalloc (size_t s) ATTRIBUTE_MALLOC;
85 /* extern t *XMALLOC (typename t); */
86 # define XMALLOC(t) ((t *) xmalloc (sizeof (t)))
91 ((t *) (sizeof (t) == 1 ? xmalloc (n) : xnmalloc (n, sizeof (t))))
125 return xmalloc (n * s);
228 /* Return a pointer to a new buffer of N bytes. This is like xmalloc,
  /external/dropbear/
scpmisc.h 40 /* from xmalloc.h */
41 void *xmalloc(size_t);
scpmisc.c 27 /* For xmalloc, xfree etc:
41 /*RCSID("OpenBSD: xmalloc.c,v 1.16 2001/07/23 18:21:46 stevesk Exp ");*/
47 xmalloc(size_t size) function
52 fprintf(stderr, "xmalloc: zero size\n");
57 fprintf(stderr, "xmalloc: out of memory (allocating %lu bytes)\n", (u_long) size);
100 cp = xmalloc(len);
  /external/dhcpcd/
configure.c 104 v = xmalloc(len);
154 *s = p = xmalloc(len);
175 env = xmalloc(sizeof(char *) * (elen + 1));
177 env[0] = xmalloc(e);
180 env[1] = xmalloc(e);
183 env[2] = xmalloc(e);
185 env[3] = xmalloc(e);
187 env[4] = xmalloc(e);
189 env[5] = xmalloc(e);
191 env[6] = xmalloc(e)
    [all...]
  /external/bison/lib/
dirname.c 48 allocated with xmalloc.
57 char *dir = xmalloc (length + append_dot + 1);
70 basename.c dirname.c xmalloc.c error.c
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_decrypt_key.c 70 pub_expt = XMALLOC(ECC_BUF_SIZE);
71 ecc_shared = XMALLOC(ECC_BUF_SIZE);
72 skey = XMALLOC(MAXBLOCKSIZE);
ecc_encrypt_key.c 71 pub_expt = XMALLOC(ECC_BUF_SIZE);
72 ecc_shared = XMALLOC(ECC_BUF_SIZE);
73 skey = XMALLOC(MAXBLOCKSIZE);
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_decrypt_verify_memory.c 61 buf = XMALLOC(taglen);
62 eax = XMALLOC(sizeof(*eax));
eax_done.c 38 headermac = XMALLOC(MAXBLOCKSIZE);
39 ctmac = XMALLOC(MAXBLOCKSIZE);
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 8 #ifndef XMALLOC
12 #define XMALLOC malloc
  /external/dropbear/libtomcrypt/src/mac/hmac/
hmac_done.c 48 buf = XMALLOC(HMAC_BLOCKSIZE);
49 isha = XMALLOC(hashsize);
hmac_init.c 53 buf = XMALLOC(HMAC_BLOCKSIZE);
59 hmac->key = XMALLOC(HMAC_BLOCKSIZE);
  /external/dropbear/libtomcrypt/src/misc/pkcs5/
pkcs_5_1.c 50 md = XMALLOC(sizeof(hash_state));
51 buf = XMALLOC(MAXBLOCKSIZE);
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_mgf1.c 51 md = XMALLOC(sizeof(hash_state));
52 buf = XMALLOC(hLen);
pkcs_1_pss_decode.c 63 DB = XMALLOC(modulus_len);
64 mask = XMALLOC(modulus_len);
65 salt = XMALLOC(modulus_len);
66 hash = XMALLOC(modulus_len);
pkcs_1_pss_encode.c 65 DB = XMALLOC(modulus_len);
66 mask = XMALLOC(modulus_len);
67 salt = XMALLOC(modulus_len);
68 hash = XMALLOC(modulus_len);
  /external/dropbear/libtomcrypt/src/mac/pelican/
pelican_memory.c 36 pel = XMALLOC(sizeof(*pel));

Completed in 1738 milliseconds

1 2 3 4 5 6 7 8 91011>>