/src/lib/libc/gen/ |
nlist_aout.c | 99 int nent; local in function:__fdnlist_aout 143 nent = 0; 149 ++nent; 154 scoreboard = malloc((size_t)nent); 156 scoreboard = alloca((size_t)nent); 160 (void)memset(scoreboard, 0, (size_t)nent); 182 if (--nent <= 0) 191 return (nent);
|
nlist_ecoff.c | 76 int rv, nent; local in function:__fdnlist_ecoff 140 nent = 0; 146 ++nent; 171 if (--nent <= 0) 179 rv = nent;
|
nlist_coff.c | 90 int rv, nent; local in function:__fdnlist_coff 139 nent = 0; 145 ++nent; 180 if (--nent <= 0) 188 rv = nent;
|
nlist_elf32.c | 97 int nent; local in function:ELFNAMEEND 154 nent = 0; 214 nent++; 219 return nent; 278 nent = 0; 284 ++nent; 327 if (--nent <= 0) 335 rv = nent;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/ |
nouveau_nvkm_engine_gr_gk20a.c | 49 int nent; local in function:gk20a_gr_av_to_init 57 nent = (blob.size / sizeof(struct gk20a_fw_av)); 58 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1))); 67 for (i = 0; i < nent; i++) { 99 int nent; local in function:gk20a_gr_aiv_to_init 107 nent = (blob.size / sizeof(struct gk20a_fw_aiv)); 108 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1))); 117 for (i = 0; i < nent; i++) { 145 int nent; local in function:gk20a_gr_av_to_method 153 nent = (blob.size / sizeof(struct gk20a_fw_av)) [all...] |
/src/sys/dev/i2o/ |
iopsp.c | 225 u_int tid, nent, i, targ, lun, size, rv, bptid; local in function:iopsp_reconfig 257 nent = iop->sc_nlctent; 258 for (le = iop->sc_lct->entry; nent != 0; nent--, le++) 266 nent = iop->sc_nlctent; 267 for (i = 0, le = iop->sc_lct->entry; i < nent; i++, le++) {
|
iop.c | 777 int i, j, nent; local in function:iop_configure_devices 781 nent = sc->sc_nlctent; 782 for (i = 0, le = sc->sc_lct->entry; i < nent; i++, le++) {
|
/src/usr.sbin/iopctl/ |
iopctl.c | 245 int i, nent; local in function:showlct 256 nent = ((le16toh(lct->tablesize) << 2) - 265 for (i = 0; i < nent; i++, ent++) { 287 if (i != nent - 1) 406 int nent; local in function:showtidmap 414 nent = iov.iov_len / sizeof(*it); 417 for (; nent-- != 0; it++)
|
/src/usr.sbin/puffs/mount_psshfs/ |
subr.c | 270 size_t nent; local in function:sftp_readdir 278 nent = psn->dentnext; 362 testd = lookup(olddir, nent, psn->dir[idx].entryname); 406 freedircache(olddir, nent);
|
/src/sys/compat/common/ |
kern_time_50.c | 351 syscallarg(int) nent; 358 int error, nent; local in function:compat_50_sys_aio_suspend 360 nent = SCARG(uap, nent); 361 if (nent <= 0 || nent > aio_listio_max) 372 list = kmem_alloc(nent * sizeof(*list), KM_SLEEP); 373 error = copyin(SCARG(uap, list), list, nent * sizeof(*list)); 376 error = aio_suspend1(l, list, nent, SCARG(uap, timeout) ? &ts : NULL); 378 kmem_free(list, nent * sizeof(*list)) [all...] |
/src/sys/kern/ |
sys_aio.c | 812 syscallarg(int) nent; 817 int error, nent; local in function:sys___aio_suspend50 819 nent = SCARG(uap, nent); 820 if (nent <= 0 || nent > aio_listio_max) 831 list = kmem_alloc(nent * sizeof(*list), KM_SLEEP); 832 error = copyin(SCARG(uap, list), list, nent * sizeof(*list)); 835 error = aio_suspend1(l, list, nent, SCARG(uap, timeout) ? &ts : NULL); 837 kmem_free(list, nent * sizeof(*list)) 936 int i, error, errcnt, mode, nent; local in function:sys_lio_listio [all...] |
/src/lib/libc/net/ |
getaddrinfo.c | 799 struct policyqueue *ent, *nent; local in function:free_addrselectpolicy 801 for (ent = TAILQ_FIRST(head); ent; ent = nent) { 802 nent = TAILQ_NEXT(ent, pc_entry);
|
/src/sys/uvm/ |
uvm_map.c | 2634 int nent = 0; local in function:uvm_map_replace 2639 nent++; 2660 if (nent != nnewents)
|
/src/sys/external/mit/xen-include-public/dist/xen/include/public/ |
platform.h | 279 uint32_t nent; member in struct:xenpf_firmware_info::__anon0f279156080a::xenpf_efi_info::__anon0f2791560c08
|
/src/sys/dev/pci/ |
pci_subr.c | 3279 unsigned char nent, linktype; local in function:pci_conf_print_rclink_dcl_cap 3288 nent = PCIREG_SHIFTOUT(reg, PCI_RCLINK_DCL_ESDESC_NUMLINKENT); 3289 printf(" Number of Link Entries: %hhu\n", nent); 3294 for (i = 0; i < nent; i++) {
|