Lines Matching refs:ibits
1037 static int selcount(struct proc *p, u_int32_t *ibits, int nfd, int *count);
1038 static int seldrop_locked(struct proc *p, u_int32_t *ibits, int nfd, int lim, int *need_wakeup);
1039 static int seldrop(struct proc *p, u_int32_t *ibits, int nfd, int lim);
1243 kfree_data(sel->ibits, 2 * sel->nbytes); in select_cleanup_uthread()
1244 sel->ibits = sel->obits = NULL; in select_cleanup_uthread()
1256 sel->ibits = buf; in select_grow_uthread_cache()
1267 bzero(sel->ibits, sel->nbytes * 2); in select_bzero_uthread_cache()
1322 (uap->name ? copyin(uap->name, &sel->ibits[(x) * nw], ni) : 0) in select_internal()
1335 if ((error = selcount(p, sel->ibits, uap->nd, &seldata->count))) { in select_internal()
1465 seldrop(p, sel->ibits, uap->nd, seldata->count); in selprocess()
1591 u_int32_t *ibits, *obits; in selscan() local
1599 ibits = sel->ibits; in selscan()
1629 iptr = (u_int32_t *)&ibits[msk * nw]; in selscan()
1943 selcount(struct proc *p, u_int32_t *ibits, int nfd, int *countp) in selcount() argument
1958 iptr = (u_int32_t *)&ibits[msk * nw]; in selcount()
1985 (void)seldrop_locked(p, ibits, nfd, n, &need_wakeup); in selcount()
2022 seldrop_locked(struct proc *p, u_int32_t *ibits, int nfd, int lim, int *need_wakeup) in seldrop_locked() argument
2040 iptr = (u_int32_t *)&ibits[msk * nw]; in seldrop_locked()
2091 seldrop(struct proc *p, u_int32_t *ibits, int nfd, int lim) in seldrop() argument
2097 error = seldrop_locked(p, ibits, nfd, lim, &need_wakeup); in seldrop()