Home
last modified time | relevance | path

Searched refs:newalloc (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/
H A Dacl.c257 unsigned int newalloc, nelem, i; in dns_acl_merge() local
264 newalloc = dest->alloc + source->alloc; in dns_acl_merge()
265 if (newalloc < 4) { in dns_acl_merge()
266 newalloc = 4; in dns_acl_merge()
270 newalloc * sizeof(dns_aclelement_t)); in dns_acl_merge()
273 memset(newmem, 0, newalloc * sizeof(dns_aclelement_t)); in dns_acl_merge()
283 dest->alloc = newalloc; in dns_acl_merge()
/netbsd-src/external/mpl/bind/dist/lib/dns/
H A Dacl.c286 size_t newalloc = dest->alloc + source->alloc; in dns_acl_match_port_transport()
287 if (newalloc < 4) { in dns_acl_match_port_transport()
288 newalloc = 4; in dns_acl_match_port_transport()
292 dest->alloc, newalloc, in dns_acl_match_port_transport()
294 dest->alloc = newalloc; in dns_acl_match_port_transport()
311 unsigned int newalloc, nelem, i; dns_acl_merge() local
/netbsd-src/external/gpl2/grep/dist/src/
H A Dgrep.c336 size_t newalloc; in fillbuf() local
362 newalloc = newsize + pagesize + 1; in fillbuf()
364 newbuf = bufalloc < newalloc ? xmalloc (bufalloc = newalloc) : buffer; in fillbuf()
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dlibverify.c429 size_t newalloc; in growbuf() local
433 newalloc = howmany(obuf->alloc + cc, 128) * 128; in growbuf()
434 newv = realloc(obuf->v, newalloc); in growbuf()
439 obuf->alloc = newalloc; in growbuf()
/netbsd-src/external/lgpl3/gmp/dist/
H A Dgmp-impl.h4517 size_t alloc, newsize, newalloc; \
4524 newalloc = 2*newsize; \
4525 (d)->alloc = newalloc; \
4527 alloc, newalloc, char); \
/netbsd-src/external/gpl2/dtc/dist/tests/
H A Drun_tests.sh366 for mode in resize realloc newalloc; do
/netbsd-src/external/gpl2/grep/dist/
H A DChangeLog1263 newalloc == save and maxalloc == save. This can happen