Searched refs:realloc (Results 126 - 150 of 756) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/byacc/test/btyacc/
H A Dcode_debug.c268 newss = (short *)realloc(data->s_base, newsize * sizeof(*newss));
275 newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
283 newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
435 if ((yylexemes = (short *) realloc(yylexemes, s * sizeof(short))) == NULL) goto yyenomem;
436 if ((yylvals = (YYSTYPE *) realloc(yylvals, s * sizeof(YYSTYPE))) == NULL) goto yyenomem;
438 if ((yylpsns = (YYLTYPE *) realloc(yylpsns, s * sizeof(YYLTYPE))) == NULL) goto yyenomem;
945 if ((yylexemes = (short *) realloc(yylexemes, s * sizeof(short))) == NULL)
947 if ((yylvals = (YYSTYPE *) realloc(yylvals, s * sizeof(YYSTYPE))) == NULL)
950 if ((yylpsns = (YYLTYPE *) realloc(yylpsns, s * sizeof(YYLTYPE))) == NULL)
H A Drename_debug.c270 newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
277 newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
285 newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
439 if ((yylexemes = realloc(yylexemes, s * sizeof(YYINT))) == NULL) goto yyenomem;
440 if ((yylvals = realloc(yylvals, s * sizeof(YYSTYPE))) == NULL) goto yyenomem;
442 if ((yylpsns = realloc(yylpsns, s * sizeof(YYLTYPE))) == NULL) goto yyenomem;
957 if ((yylexemes = realloc(yylexemes, s * sizeof(YYINT))) == NULL)
959 if ((yylvals = realloc(yylvals, s * sizeof(YYSTYPE))) == NULL)
962 if ((yylpsns = realloc(yylpsns, s * sizeof(YYLTYPE))) == NULL)
/freebsd-11-stable/bin/ed/
H A Dundo.c55 (t = (undo_t *) realloc(ustack, (usize += USIZE) * sizeof(undo_t))) != NULL) {
/freebsd-11-stable/bin/rcp/
H A Dutil.c144 if ((bp->buf = realloc(bp->buf, size)) == NULL) {
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dsetenv.c107 new_environ = (char **) realloc (last_environ,
/freebsd-11-stable/crypto/heimdal/appl/rcp/
H A Dutil.c163 if ((p = realloc(bp->buf, size)) == NULL) {
/freebsd-11-stable/crypto/heimdal/base/
H A Darray.c114 ptr = realloc(array->val, (array->len + 1) * sizeof(array->val[0]));
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dder_format.c151 c = realloc(data->components,
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dpeer.c144 ptr = realloc(peer->val, sizeof(peer->val[0]) * (peer->len + 1));
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Ddata.c125 tmp = realloc(p->data, len);
/freebsd-11-stable/usr.bin/col/
H A Dcol.c326 if ((l->l_line = realloc(l->l_line,
445 if ((sorted = realloc(sorted,
451 if ((count = realloc(count,
563 if ((l = realloc(NULL, sizeof(LINE) * NALLOC)) == NULL)
/freebsd-11-stable/usr.bin/fold/
H A Dfold.c192 buf = realloc(buf, sizeof(*buf) * buf_max);
194 err(1, "realloc()");
/freebsd-11-stable/usr.sbin/cron/lib/
H A Denv.c119 p = (char **) realloc((void *) envp,
/freebsd-11-stable/cddl/compat/opensolaris/misc/
H A Dzmount.c53 *iov = realloc(*iov, sizeof(**iov) * (i + 2));
/freebsd-11-stable/contrib/blacklist/bin/
H A Dblacklistd.c348 *blp = realloc(*blp, sizeof(**blp) * *maxfd);
351 *pfdp = realloc(*pfdp, sizeof(**pfdp) * *maxfd);
375 void *p = realloc(*listp, *mlist * sizeof(*list));
461 void *p = realloc(blsock,
/freebsd-11-stable/kerberos5/lib/libroken/
H A DMakefile56 realloc.c \
/freebsd-11-stable/lib/libc/stdio/
H A Dfgetln.c70 if ((p = realloc(fp->_lb._base, newsize)) == NULL)
H A Dgetdelim.c79 newline = realloc(*linep, newcap);
/freebsd-11-stable/lib/libnetbsd/
H A Defun.c126 void *q = realloc(p, n);
/freebsd-11-stable/stand/efi/libefi/
H A Dhandles.c54 entry = (entry == NULL) ? malloc(sz) : realloc(entry, sz);
/freebsd-11-stable/usr.sbin/bluetooth/sdpd/
H A Dprovider.c147 uint8_t *new_data = (uint8_t *) realloc(provider->data, datalen);
/freebsd-11-stable/usr.sbin/lastlogin/
H A Dlastlogin.c132 ulist = realloc(ulist,
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dios.cpp184 long* iarray = static_cast<long*>(realloc(__iarray_, newcap * sizeof(long)));
208 void** parray = static_cast<void**>(realloc(__parray_, newcap * sizeof(void *)));
234 event_callback* fns = static_cast<event_callback*>(realloc(__fn_, newcap * sizeof(event_callback)));
238 int* indxs = static_cast<int *>(realloc(__index_, newcap * sizeof(int)));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cpp43 INTERCEPT_WRAP_W_WW(realloc)
/freebsd-11-stable/stand/common/
H A Dinterp_lua.c75 return realloc(ptr, nsize);

Completed in 375 milliseconds

1234567891011>>