HomeSort by relevance Sort by last modified time
    Searched refs:xcalloc (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/openssh/
xmalloc.h 20 void *xcalloc(size_t, size_t);
sandbox-null.c 50 box = xcalloc(1, sizeof(*box));
auth-skey.c 66 *prompts = xcalloc(*numprompts, sizeof(char *));
67 *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));
auth-bsdauth.c 83 *prompts = xcalloc(*numprompts, sizeof(char *));
84 *echo_on = xcalloc(*numprompts, sizeof(u_int));
sandbox-darwin.c 52 box = xcalloc(1, sizeof(*box));
sandbox-rlimit.c 54 box = xcalloc(1, sizeof(*box));
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)",
  /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/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));
relation.c 102 INDEX = xcalloc (size + 1, sizeof *INDEX);
133 size_t *nedges = xcalloc (n, sizeof *nedges);
derives.c 71 rule_list **dset = xcalloc (nvars, sizeof *dset);
  /external/elfutils/lib/
system.h 56 extern void *xcalloc (size_t, size_t) __attribute__ ((__malloc__));
xmalloc.c 58 xcalloc (n, s) function
  /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/openssh/openbsd-compat/
bsd-cygwin_util.c 90 p = xcalloc(WENV_SIZ + 1, sizeof(char *));
  /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))))
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
libiberty.h 308 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
339 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
347 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
356 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
libiberty.h 308 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
339 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
347 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
356 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
libiberty.h 308 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
339 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
347 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
356 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
libiberty.h 308 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
339 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
347 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
356 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))

Completed in 705 milliseconds

1 2 3 4