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

12345678

/freebsd-12-stable/libexec/rtld-aout/
H A Dsupport.h36 void *xrealloc __P((void *, size_t));
H A Dsupport.c76 xrealloc(void *p, size_t n) function
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/common/
H A Dmemory.h46 void *xrealloc(void *, size_t);
H A Dmemory.c95 xrealloc(void *ptr, size_t size) function
/freebsd-12-stable/contrib/binutils/ld/
H A Dldmisc.h32 extern void *xrealloc (void *, size_t);
/freebsd-12-stable/contrib/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);
/freebsd-12-stable/contrib/xz/src/xz/
H A Dutil.h15 /// \note xmalloc(), xrealloc(), and xstrdup() must not be used when
18 #define xmalloc(size) xrealloc(NULL, size)
22 extern void *xrealloc(void *ptr, size_t size)
/freebsd-12-stable/contrib/gcc/
H A Dggc-none.c58 return xrealloc (x, size);
H A Dparams.c46 compiler_params = xrealloc (compiler_params,
/freebsd-12-stable/gnu/usr.bin/grep/
H A Dexclude.c35 void *xrealloc PARAMS ((void *, size_t));
74 ex->exclude = (char const **) xrealloc (ex->exclude,
107 buf = xrealloc (buf, buf_alloc *= 2);
110 buf = xrealloc (buf, buf_count + 1);
H A Dxalloc.h61 void *xrealloc PARAMS ((void *p, size_t n));
67 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
H A Dxmalloc.c97 xrealloc (void *p, size_t n) function
/freebsd-12-stable/contrib/binutils/binutils/
H A Dbucomm.h73 void *xrealloc (void *, size_t);
/freebsd-12-stable/contrib/ldns/drill/
H A Ddrill_util.h59 void *xrealloc(void *p, size_t s);
/freebsd-12-stable/contrib/diff/lib/
H A Dxmalloc.c114 xrealloc (void *p, size_t n) function
202 return xrealloc (p, n * s);
H A Dxalloc.h55 void *xrealloc (void *p, size_t s);
/freebsd-12-stable/contrib/gdb/gdb/
H A Denviron.c76 e->vector = (char **) xrealloc ((char *) e->vector,
136 vector = (char **) xrealloc ((char *) vector,
H A Dframe-unwind.c43 table->sniffer = xrealloc (table->sniffer, ((table->nr + 1)
H A Dframe-base.c105 table->sniffer = xrealloc (table->sniffer,
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dstack.c101 sp->st_data = xrealloc(sp->st_data,
/freebsd-12-stable/contrib/tcsh/
H A Dtc.str.c245 sdst = xrealloc(sdst, (dstsize + MALLOC_SURPLUS) * sizeof(char));
522 buf = xrealloc(buf, size);
552 sdst = xrealloc(sdst,
563 sdst = xrealloc(sdst, (dstsize + MALLOC_SURPLUS) * sizeof(char));
586 bb->vec = xrealloc(bb->vec, bb->size * sizeof (*bb->vec));
625 return xrealloc(bb->vec, (bb->len + 1) * sizeof (*bb->vec));
644 buf->s = xrealloc(buf->s, buf->size * sizeof(*buf->s)); \
672 buf->s = xrealloc(buf->s, buf->size * sizeof(*buf->s)); \
688 return xrealloc(buf->s, buf->len * sizeof(*buf->s)); \
/freebsd-12-stable/contrib/diff/src/
H A Dio.c177 current->buffer = xrealloc (current->buffer, cc);
204 current->buffer = xrealloc (current->buffer, current->bufsize);
212 current->buffer = xrealloc (current->buffer, current->bufsize);
421 eqs = xrealloc (eqs, eqs_alloc * sizeof *eqs);
462 cureqs = xrealloc (cureqs, alloc_lines * sizeof *cureqs);
464 linbuf = xrealloc (linbuf,
489 linbuf = xrealloc (linbuf,
749 linbuf0 = xrealloc (linbuf0, alloc_lines0 * sizeof *linbuf0);
/freebsd-12-stable/contrib/gcclibs/libiberty/
H A Dxmalloc.c32 @deftypefn Replacement void* xrealloc (void *@var{ptr}, size_t @var{size})
170 xrealloc (PTR oldmem, size_t size) function
/freebsd-12-stable/contrib/dtc/
H A Dutil.h57 static inline void *xrealloc(void *p, size_t len) function
/freebsd-12-stable/contrib/binutils/libiberty/
H A Dxmalloc.c32 @deftypefn Replacement void* xrealloc (void *@var{ptr}, size_t @var{size})
170 xrealloc (PTR oldmem, size_t size) function

Completed in 240 milliseconds

12345678