Home
last modified time | relevance | path

Searched refs:new_sz (Results 1 – 4 of 4) sorted by relevance

/freebsd-9-stable/crypto/heimdal/appl/ftp/common/
Dbuffer.c49 size_t new_sz; in alloc_buffer() local
51 new_sz = BUFSIZ; in alloc_buffer()
54 new_sz = max(BUFSIZ, st->st_blksize); in alloc_buffer()
56 if(new_sz > *sz) { in alloc_buffer()
59 oldbuf = malloc (new_sz); in alloc_buffer()
65 *sz = new_sz; in alloc_buffer()
/freebsd-9-stable/usr.bin/dc/
Dinout.c240 int count, ch, i, new_sz, sz; in read_string() local
263 new_sz = sz * 2; in read_string()
264 p = brealloc(p, new_sz + 1); in read_string()
265 sz = new_sz; in read_string()
/freebsd-9-stable/contrib/ntp/ntpq/
Dntpq.c3524 size_t new_sz; in grow_assoc_cache() local
3526 new_sz = prior_sz + 4 * 1024; in grow_assoc_cache()
3528 new_sz -= 4 * sizeof(void *); in grow_assoc_cache()
3530 assoc_cache = erealloc_zero(assoc_cache, new_sz, prior_sz); in grow_assoc_cache()
3531 prior_sz = new_sz; in grow_assoc_cache()
3532 assoc_cache_slots = (u_int)(new_sz / sizeof(assoc_cache[0])); in grow_assoc_cache()
/freebsd-9-stable/contrib/gcc/
Dtree-into-ssa.c656 unsigned int new_sz = num_ssa_names + NAME_SETS_GROWTH_FACTOR; in add_new_name_mapping() local
657 new_ssa_names = sbitmap_resize (new_ssa_names, new_sz, 0); in add_new_name_mapping()
658 old_ssa_names = sbitmap_resize (old_ssa_names, new_sz, 0); in add_new_name_mapping()