Searched refs:new_sz (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/crypto/heimdal/appl/ftp/common/
H A Dbuffer.c49 size_t new_sz; local
51 new_sz = BUFSIZ;
54 new_sz = max(BUFSIZ, st->st_blksize);
56 if(new_sz > *sz) {
59 oldbuf = malloc (new_sz);
65 *sz = new_sz;
/freebsd-11-stable/usr.bin/dc/
H A Dinout.c235 int count, ch, i, new_sz, sz; local
258 new_sz = sz * 2;
259 p = brealloc(p, new_sz + 1);
260 sz = new_sz;
/freebsd-11-stable/contrib/dtc/
H A Dfdtput.c135 int new_sz = fdt_totalsize(fdt) + delta; local
136 fdt = xrealloc(fdt, new_sz);
137 fdt_open_into(fdt, fdt, new_sz);
/freebsd-11-stable/contrib/ntp/ntpq/
H A Dntpq.c3816 size_t new_sz; local
3818 new_sz = prior_sz + 4 * 1024;
3820 new_sz -= 4 * sizeof(void *);
3822 assoc_cache = erealloc_zero(assoc_cache, new_sz, prior_sz);
3823 prior_sz = new_sz;
3824 assoc_cache_slots = (u_int)(new_sz / sizeof(assoc_cache[0]));
/freebsd-11-stable/contrib/gcc/
H A Dtree-into-ssa.c656 unsigned int new_sz = num_ssa_names + NAME_SETS_GROWTH_FACTOR; local
657 new_ssa_names = sbitmap_resize (new_ssa_names, new_sz, 0);
658 old_ssa_names = sbitmap_resize (old_ssa_names, new_sz, 0);

Completed in 93 milliseconds