Lines Matching defs:nent
351 syscallarg(int) nent;
358 int error, nent;
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));