Home
last modified time | relevance | path

Searched refs:recallocarray (Results 1 – 25 of 25) sorted by relevance

/freebsd-12.1/contrib/mandoc/
H A Dtest-recallocarray.c10 return !recallocarray(p, 2, 3, 2); in main()
H A Dconfig.h55 extern void *recallocarray(void *, size_t, size_t, size_t);
H A Dcompat_recallocarray.c49 recallocarray(void *ptr, size_t oldnmemb, size_t newnmemb, size_t size) in recallocarray() function
H A Dmandoc_aux.c92 ptr = recallocarray(ptr, oldnum, num, size); in mandoc_recallocarray()
H A Dconfigure304 singletest recallocarray RECALLOCARRAY || \
305 runtest recallocarray RECALLOCARRAY -D_OPENBSD_SOURCE || true
H A DMakefile41 test-recallocarray.c \
/freebsd-12.1/crypto/openssh/
H A Dsshbuf.c181 if ((d = recallocarray(buf->d, buf->alloc, SSHBUF_SIZE_INIT, in sshbuf_reset()
240 if ((dp = recallocarray(buf->d, buf->alloc, rlen, 1)) == NULL) in sshbuf_set_max_size()
329 if ((dp = recallocarray(buf->d, buf->alloc, rlen, 1)) == NULL) { in sshbuf_allocate()
H A Dxmalloc.c85 new_ptr = recallocarray(ptr, onmemb, nmemb, size); in xrecallocarray()
H A Dbitmap.c91 if ((tmp = recallocarray(b->d, b->len, in reserve()
H A Dutf8.c84 if ((tp = recallocarray(*dst, *sz, tsz, 1)) == NULL) in grow_dst()
H A Dauth-options.c370 if ((permits = recallocarray(permits, npermits, npermits + 1, in handle_permit()
481 if ((ret->env = recallocarray(ret->env, ret->nenv, in sshauthopt_parse()
H A Dauth2.c751 (tmp = recallocarray(authctxt->prev_keys, authctxt->nprev_keys, in auth2_record_key()
H A Dhostfile.c254 if ((tmp = recallocarray(hostkeys->entries, hostkeys->num_entries, in record_hostkey()
H A Dclientloop.c1824 if ((tmp = recallocarray(ctx->old_keys, ctx->nold, ctx->nold + 1, in hostkeys_find()
2068 if ((tmp = recallocarray(ctx->keys, ctx->nkeys, ctx->nkeys + 1, in client_input_hostkeys()
H A Dssh_namespace.h452 #define recallocarray Fssh_recallocarray macro
H A Dssh-agent.c989 (pfd = recallocarray(pfd, *npfdp, npfd, sizeof(*pfd))) == NULL) in prepare_poll()
H A Dkrl.c1029 tmp_ca_used = recallocarray(ca_used, nca_used, nca_used + 1, in ssh_krl_from_blob()
H A Dsshkey.c1930 key->cert->principals = recallocarray(key->cert->principals, in cert_parse()
H A DChangeLog5757 recallocarray; ok deraadt@
5792 add recallocarray replacement and dependency
5794 recallocarray() needs getpagesize() so add a tiny replacement for that.
5839 Switch to recallocarray() for a few operations. Both
H A Dconfigure.ac1832 recallocarray \
/freebsd-12.1/crypto/openssh/openbsd-compat/
H A Drecallocarray.c38 recallocarray(void *ptr, size_t oldnmemb, size_t newnmemb, size_t size) in recallocarray() function
H A DMakefile.in42 recallocarray.o \
H A Dopenbsd-compat.h80 void *recallocarray(void *, size_t, size_t, size_t);
/freebsd-12.1/secure/lib/libssh/
H A DMakefile37 realpath.c recallocarray.c strtonum.c timingsafe_bcmp.c vis.c xcrypt.c
/freebsd-12.1/crypto/openssh/regress/unittests/authopt/
H A Dtests.c74 ret = recallocarray(ret, n, n + 1, sizeof(*ret)); in commasplit()