Searched refs:nent (Results 1 - 3 of 3) sorted by relevance

/xnu-2422.115.4/bsd/sys/
H A Daio.h249 * control blocks. The nent argument indicates the number of elements in the
255 int nent,
282 int nent,
/xnu-2422.115.4/bsd/kern/
H A Dkern_aio.c225 static user_addr_t *aio_copy_in_list(proc_t procp, user_addr_t aiocblist, int nent);
1113 (int)p, uap->nent, 0, 0, 0 );
1125 if ( uap->nent < 1 || uap->nent > aio_max_requests_per_process ) {
1162 aiocbpp = aio_copy_in_list(p, uap->aiocblist, uap->nent);
1171 for ( i = 0; i < uap->nent; i++ ) {
1189 } /* for ( ; i < uap->nent; ) */
1192 (int)p, uap->nent, 0, 0, 0 );
1227 (int)p, uap->nent, error, 0, 0 );
1262 aio_copy_in_list(proc_t procp, user_addr_t aiocblist, int nent) argument
[all...]
/xnu-2422.115.4/bsd/dev/dtrace/
H A Dfasttrap.c2422 ulong_t nent; local
2460 nent = ddi_getprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
2463 if (nent <= 0 || nent > 0x1000000)
2464 nent = FASTTRAP_TPOINTS_DEFAULT_SIZE;
2466 if ((nent & (nent - 1)) == 0)
2467 fasttrap_tpoints.fth_nent = nent;
2469 fasttrap_tpoints.fth_nent = 1 << fasttrap_highbit(nent);
2488 nent
[all...]

Completed in 218 milliseconds