/src/bin/pax/ |
cpio.c | 190 rd_nm(ARCHD *arcn, int nsz) 195 if ((nsz <= 0) || (nsz > (int)sizeof(arcn->name))) { 196 tty_warn(1, "Cpio file name length %d is out of range", nsz); 203 if ((rd_wrbuf(arcn->name,nsz) != nsz) || (arcn->name[nsz-1] != '\0') || 285 int nsz; local in function:cpio_rd 318 if ((nsz = (int)asc_u32(hd->c_namesize,sizeof(hd->c_namesize),OCT)) < 2) 320 arcn->nlen = nsz - 1 385 int nsz; local in function:cpio_wr 561 int nsz; local in function:vcpio_rd 683 unsigned int nsz; local in function:vcpio_wr 865 int nsz; local in function:bcpio_rd 980 int nsz; local in function:bcpio_wr [all...] |
/src/sys/kern/ |
subr_specificdata.c | 185 size_t nsz; local in function:specificdata_key_create 203 nsz = (sd->sd_nkey + 1) * sizeof(*newkeys); 205 newkeys = kmem_zalloc(nsz, KM_SLEEP);
|
kern_sysctl.c | 716 int error, ni, at, nm, type, nsz, sz, flags, anum, v; local in function:_sysctl_create 810 nsz = 0; 811 while (nsz < SYSCTL_NAMELEN && nnode.sysctl_name[nsz] != '\0') { 812 if ((nnode.sysctl_name[nsz] >= '0' && 813 nnode.sysctl_name[nsz] <= '9') || 814 (nnode.sysctl_name[nsz] >= 'A' && 815 nnode.sysctl_name[nsz] <= 'Z') || 816 (nnode.sysctl_name[nsz] >= 'a' && 817 nnode.sysctl_name[nsz] <= 'z') | [all...] |
subr_pool.c | 3146 size_t nsz; local in function:pool_redzone_init 3180 nsz = roundup(pp->pr_size + redzsz, pp->pr_align); 3181 if (nsz <= (pp->pr_alloc->pa_pagesz / 2)) { 3183 pp->pr_size = nsz;
|
/src/sys/lib/libsa/ |
minixfs3.c | 345 size_t block_size, nsz; local in function:buf_read_file 383 nsz = (size_t)(fp->f_di.mdi_size - fp->f_seekp); 384 if (*size_p > nsz) 385 *size_p = nsz;
|
/src/sbin/sysctl/ |
sysctl.c | 2513 size_t osz, nsz; local in function:proc_limit 2522 nsz = sizeof(nlim); 2537 nsz = 0; 2541 rc = prog_sysctl(name, namelen, &olim, &osz, newp, nsz); 2632 size_t osz, nsz; local in function:mode_bits 2646 nsz = sizeof(m); 2673 nsz = 0; 2677 rc = prog_sysctl(name, namelen, &o, &osz, newp, nsz); 2763 size_t osz, nsz; local in function:reserve 2773 nsz = sizeof(n) [all...] |