Searched refs:xcalloc (Results 1 - 25 of 43) sorted by relevance

12

/haiku-fatelf/src/bin/patch/
H A Dxalloc.h44 void *xcalloc PARAMS ((size_t n, size_t s));
48 # define XCALLOC(Type, N_bytes) ((Type *) xcalloc (sizeof (Type), (N_bytes)))
H A Dxmalloc.c105 xcalloc (size_t n, size_t s) function
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dxmemdup.c1 /* xmemdup.c -- Duplicate a memory buffer, using xcalloc.
35 PTR output = xcalloc (1, alloc_size);
H A Dxmalloc.c38 @deftypefn Replacement void* xcalloc (size_t @var{nelem}, size_t @var{elsize})
151 xcalloc (nelem, elsize) function
H A Dfibheap.c61 return (fibheap_t) xcalloc (1, sizeof (struct fibheap));
70 node = (fibnode_t) xcalloc (1, sizeof *node);
/haiku-fatelf/src/bin/diffutils/lib/
H A Dxalloc.h55 void *xcalloc PARAMS ((size_t n, size_t s));
60 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items)))
H A Dxmalloc.c105 xcalloc (size_t n, size_t s) function
/haiku-fatelf/src/bin/gdb/include/
H A Dlibiberty.h239 extern PTR xcalloc PARAMS ((size_t, size_t)) ATTRIBUTE_MALLOC;
263 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
269 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
276 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
/haiku-fatelf/src/bin/network/wget/src/
H A Dutils.h43 #define xnew0(type) (xcalloc (1, sizeof (type)))
45 #define xnew0_array(type, len) (xcalloc ((len), sizeof (type)))
/haiku-fatelf/src/bin/coreutils/lib/
H A Dxmalloc.c77 to xcalloc (N, S). */
89 xcalloc (size_t n, size_t s) function
H A Dxalloc.h58 void *xcalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
103 ((t *) (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))))
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dxmalloc.c81 to xcalloc (N, S). */
93 xcalloc (size_t n, size_t s) function
H A Dxalloc.h49 void *xcalloc (size_t n, size_t s);
94 ((t *) (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))))
/haiku-fatelf/src/bin/network/wget/lib/
H A Dxmalloc.c77 to xcalloc (N, S). */
89 xcalloc (size_t n, size_t s) function
H A Dxalloc.h58 void *xcalloc (size_t n, size_t s) ATTRIBUTE_MALLOC;
103 ((t *) (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))))
/haiku-fatelf/src/bin/sharutils/lib/
H A Dxmalloc.c88 xcalloc (n, s) function
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dlibiberty.h141 extern PTR xcalloc PARAMS ((size_t, size_t));
/haiku-fatelf/src/bin/gdb/gdb/
H A Ddemangle.c185 demangling_style_names = xcalloc (ndems + 1, sizeof (char *));
H A Dfbsd-nat.c46 buf = xcalloc (MAXPATHLEN, sizeof (char));
H A Dsolib-frv.c466 sop = xcalloc (1, sizeof (struct so_list));
467 sop->lm_info = xcalloc (1, sizeof (struct lm_info));
864 main_executable_lm_info = xcalloc (1, sizeof (struct lm_info));
867 new_offsets = xcalloc (symfile_objfile->num_sections,
H A Dsolib-aix5.c265 sop = xcalloc (1, sizeof (struct so_list));
267 sop->lm_info = xcalloc (1, sizeof (struct lm_info));
717 new_offsets = xcalloc (symfile_objfile->num_sections,
H A Ddictionary.c403 DICT_HASHED_BUCKETS (retval) = xcalloc (DICT_EXPANDABLE_INITIAL_CAPACITY,
723 struct symbol **new_buckets = xcalloc (new_nbuckets,
H A Dnto-tdep.c166 argv = xcalloc (n + 1, sizeof argv[0]);
H A Dsolib-haiku.c170 new_offsets = xcalloc (symfile_objfile->num_sections,
/haiku-fatelf/src/bin/diffutils/src/
H A Ddiff3.c881 D_LINEARRAY (result, FILE0) = xcalloc (numlines, sizeof (char *));
882 D_LENARRAY (result, FILE0) = xcalloc (numlines, sizeof (size_t));
893 D_LINEARRAY (result, FILE1) = xcalloc (numlines, sizeof (char *));
894 D_LENARRAY (result, FILE1) = xcalloc (numlines, sizeof (size_t));
905 D_LINEARRAY (result, FILE2) = xcalloc (numlines, sizeof (char *));
906 D_LENARRAY (result, FILE2) = xcalloc (numlines, sizeof (size_t));

Completed in 194 milliseconds

12