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

12345678

/haiku-fatelf/src/bin/bash/lib/readline/
H A Dxmalloc.h42 extern PTR_T xrealloc PARAMS((void *, size_t));
H A Dxmalloc.c68 xrealloc (pointer, bytes) function
77 memory_error_and_abort ("xrealloc");
H A Dtilde.c53 static void *xmalloc (), *xrealloc ();
216 result = (char *)xrealloc (result, 1 + (result_size += (start + 20)));
249 result = (char *)xrealloc (result, 1 + (result_size += (len + 20)));
474 xrealloc (pointer, bytes)
473 xrealloc (pointer, bytes) function
/haiku-fatelf/src/bin/gdb/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");
/haiku-fatelf/src/bin/patch/
H A Dxalloc.h45 void *xrealloc PARAMS ((void *p, size_t n));
50 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_bytes)))
/haiku-fatelf/src/bin/bash/
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.c107 result = (char *)xrealloc (result, result_size);
132 result = (char *)xrealloc (result, result_size);
141 result = (char *)xrealloc (result, result_size);
/haiku-fatelf/src/bin/sharutils/lib/
H A Dxgetcwd.c43 char *xrealloc ();
66 cwd = xrealloc (cwd, path_max);
/haiku-fatelf/src/bin/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);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dxalloc.h59 void *xrealloc (void *p, size_t s);
137 return xrealloc (p, n * s);
226 return xrealloc (p, n * s);
249 xrealloc (T *p, size_t s) function
251 return (T *) xrealloc ((void *) p, s);
H A Dcanonicalize.c113 char *p = xrealloc (rname, PATH_MAX);
172 rname = xrealloc (rname, new_size);
234 extra_buf = xrealloc (extra_buf, extra_len);
276 rname = xrealloc (rname, dest - rname + 1);
H A Dsavedir.c91 name_space = xrealloc (name_space, allocated);
H A Dxmalloc.c55 xrealloc (void *p, size_t n) function
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dxalloc.h50 void *xrealloc (void *p, size_t s);
127 return xrealloc (p, n * s);
216 return xrealloc (p, n * s);
238 xrealloc (T *p, size_t s) function
240 return (T *) xrealloc ((void *) p, s);
H A Dsavedir.c97 name_space = xrealloc (name_space, allocated);
H A Dxmalloc.c59 xrealloc (void *p, size_t n) function
/haiku-fatelf/src/bin/network/wget/lib/
H A Dxalloc.h59 void *xrealloc (void *p, size_t s);
137 return xrealloc (p, n * s);
226 return xrealloc (p, n * s);
249 xrealloc (T *p, size_t s) function
251 return (T *) xrealloc ((void *) p, s);
/haiku-fatelf/src/bin/findutils/lib/
H A Dextendbuf.c87 result = xrealloc (existing, newsize);
98 /* xmalloc() or xrealloc() may have changed errno, but in the
/haiku-fatelf/src/bin/gdb/include/
H A Dlibiberty.h103 way xrealloc works. */
234 extern PTR xrealloc PARAMS ((PTR, size_t));
270 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N)))
277 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S)))
/haiku-fatelf/src/bin/gdb/gdb/
H A Denviron.c76 e->vector = (char **) xrealloc ((char *) e->vector,
136 vector = (char **) xrealloc ((char *) vector,
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dzgetline.c92 line = (*n >= new_size) ? NULL : xrealloc (*lineptr, new_size);
/haiku-fatelf/src/bin/bash/lib/tilde/
H A Dtilde.c53 static void *xmalloc (), *xrealloc ();
216 result = (char *)xrealloc (result, 1 + (result_size += (start + 20)));
249 result = (char *)xrealloc (result, 1 + (result_size += (len + 20)));
474 xrealloc (pointer, bytes)
473 xrealloc (pointer, bytes) function

Completed in 169 milliseconds

12345678