Home
last modified time | relevance | path

Searched refs:obits (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/kern/
H A Dsys_generic.c1079 fd_mask *ibits[3], *obits[3], *selbits, *sbp; in kern_select() local
1132 obits[x] = NULL; \ in kern_select()
1135 obits[x] = sbp; \ in kern_select()
1201 error = selscan(td, ibits, obits, nd); in kern_select()
1207 error = selrescan(td, ibits, obits); in kern_select()
1221 swizzle_fdset(obits[0]); in kern_select()
1222 swizzle_fdset(obits[1]); in kern_select()
1223 swizzle_fdset(obits[2]); in kern_select()
1299 if ((obits[msk][idx] & bit) != 0) in selsetbits()
1301 obits[msk][idx] |= bit; in selsetbits()
[all …]
/f-stack/freebsd/i386/i386/
H A Dpmap.c3374 pt_entry_t obits, pbits; in __CONCAT() local
3444 obits = pbits = *pte; in __CONCAT()
3461 if (pbits != obits) { in __CONCAT()
3463 if (!atomic_cmpset_64(pte, obits, pbits)) in __CONCAT()
3466 if (!atomic_cmpset_int((u_int *)pte, obits, in __CONCAT()
3470 if (obits & PG_G) in __CONCAT()
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c6321 pt_entry_t obits, pbits; in pmap_protect() local
6382 obits = pbits = *pdpe; in pmap_protect()
6390 if (pbits != obits) { in pmap_protect()
6391 if (!atomic_cmpset_long(pdpe, obits, pbits)) in pmap_protect()
6442 obits = pbits = *pte; in pmap_protect()
6457 if (pbits != obits) { in pmap_protect()
6458 if (!atomic_cmpset_long(pte, obits, pbits)) in pmap_protect()
6460 if (obits & PG_G) in pmap_protect()