Searched refs:xrealloc (Results 1 - 25 of 226) sorted by relevance

12345678910

/macosx-10.10/OpenSSH-189/openssh/
H A Dxmalloc.h21 void *xrealloc(void *, size_t, size_t);
H A Dxmalloc.c57 xrealloc(void *ptr, size_t nmemb, size_t size) function
63 fatal("xrealloc: zero size");
65 fatal("xrealloc: nmemb * size > SIZE_T_MAX");
71 fatal("xrealloc: out of memory (new_size %lu bytes)",
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dxmalloc.h43 extern PTR_T xrealloc PARAMS((void *, size_t));
H A Dxmalloc.c67 xrealloc (pointer, bytes) function
76 memory_error_and_abort ("xrealloc");
/macosx-10.10/dtrace-147/tools/ctfconvert/
H A Dmemory.h46 void *xrealloc(void *, size_t);
H A Dmemory.c94 xrealloc(void *ptr, size_t size) function
/macosx-10.10/uucp-11/uucp/lib/
H A Dxreall.c11 xrealloc (p, c) function
/macosx-10.10/file-46/file/tests/
H A Dtest.c34 xrealloc(void *p, size_t n) function
49 char *l = (char *)xrealloc(NULL, len), *s = l;
53 l = (char *)xrealloc(l, len * 2);
59 l = (char *)xrealloc(l, len + 1);
63 l = (char *)xrealloc(l, s - l);
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dxmalloc.h40 extern PTR_T xrealloc __P((void *, size_t));
49 #define xrealloc(x, n) sh_xrealloc((x), (n), __FILE__, __LINE__) macro
H A Dbracecomp.c103 result = (char *)xrealloc (result, result_size);
128 result = (char *)xrealloc (result, result_size);
137 result = (char *)xrealloc (result, result_size);
/macosx-10.10/libiconv-42/libiconv/srclib/
H A Dxalloc.h40 extern void *xrealloc (void *ptr, size_t size);
H A Dxmalloc.c92 xrealloc (void *p, size_t n) function
/macosx-10.10/man-16/man/man2html/
H A Ddefs.h40 extern void *xrealloc(void *ptr, size_t size);
/macosx-10.10/Libc-1044.1.2/regex/TRE/lib/
H A Dxmalloc.h51 #define xrealloc(ptr, new_size) xrealloc_impl(ptr, new_size, __FILE__, \ macro
70 #define xrealloc(ptr, new_size) realloc(ptr, new_size) macro
/macosx-10.10/gnudiff-19/diffutils/lib/
H A Dxalloc.h56 void *xrealloc PARAMS ((void *p, size_t n));
62 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
H A Dxmalloc.c94 xrealloc (void *p, size_t n) function
H A Dexclude.c201 ex->exclude = (struct patopts *) xrealloc (ex->exclude,
246 buf = xrealloc (buf, buf_alloc);
256 buf = xrealloc (buf, buf_count + 1);
/macosx-10.10/gpatch-3/patch/
H A Dxalloc.h56 void *xrealloc PARAMS ((void *p, size_t n));
62 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
H A Dxmalloc.c94 xrealloc (void *p, size_t n) function
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dxalloc.h51 void *xrealloc (void *p, size_t s);
128 return xrealloc (p, n * s);
217 return xrealloc (p, n * s);
239 xrealloc (T *p, size_t s) function
241 return (T *) xrealloc ((void *) p, s);
/macosx-10.10/emacs-93/emacs/lib-src/
H A Dcvtmail.c48 char *xrealloc __P ((char *, unsigned));
104 cf = (char *) xrealloc (cf, cflen);
175 xrealloc (ptr, size) function
/macosx-10.10/bash-94.1.2/bash-3.2/lib/malloc/
H A Dxmalloc.c75 xrealloc (pointer, bytes) function
84 memory_error_and_abort ("xrealloc");
/macosx-10.10/text_cmds-88/sort/
H A Dxalloc.h52 void *xrealloc (void *p, size_t s);
H A Dxmalloc.c89 xrealloc (void *p, size_t n) function
177 return xrealloc (p, n * s);
/macosx-10.10/tcsh-65/tcsh/
H A Dtc.str.c176 sdst = xrealloc(sdst, (dstsize + MALLOC_SURPLUS) * sizeof(char));
451 buf = xrealloc(buf, size);
481 sdst = xrealloc(sdst,
492 sdst = xrealloc(sdst, (dstsize + MALLOC_SURPLUS) * sizeof(char));
515 bb->vec = xrealloc(bb->vec, bb->size * sizeof (*bb->vec));
550 return xrealloc(bb->vec, (bb->len + 1) * sizeof (*bb->vec));
569 buf->s = xrealloc(buf->s, buf->size * sizeof(*buf->s)); \
596 buf->s = xrealloc(buf->s, buf->size * sizeof(*buf->s)); \
612 return xrealloc(buf->s, buf->len * sizeof(*buf->s)); \

Completed in 181 milliseconds

12345678910