Searched refs:toset (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lgc.c | 720 int toclear, toset; /* bits to clear and to set in all live objects */ in sweeplist() local 724 toset = bitmask(OLDBIT); /* set the old bit of all surviving objects */ in sweeplist() 729 toset = luaC_white(g); /* make object white */ in sweeplist() 745 gch(curr)->marked = cast_byte((marked & toclear) | toset); in sweeplist()
|
/freebsd/sys/sys/ |
H A D | vnode.h | 848 void vn_irflag_set_locked(struct vnode *vp, short toset); 849 void vn_irflag_set(struct vnode *vp, short toset); 850 void vn_irflag_set_cond_locked(struct vnode *vp, short toset); 851 void vn_irflag_set_cond(struct vnode *vp, short toset);
|
/freebsd/sys/kern/ |
H A D | vfs_subr.c | 7309 vn_irflag_set_locked(struct vnode *vp, short toset) in vn_irflag_set_locked() argument 7315 VNASSERT((flags & toset) == 0, vp, in vn_irflag_set_locked() 7317 __func__, flags, toset)); in vn_irflag_set_locked() 7318 atomic_store_short(&vp->v_irflag, flags | toset); in vn_irflag_set_locked() 7322 vn_irflag_set(struct vnode *vp, short toset) in vn_irflag_set() argument 7326 vn_irflag_set_locked(vp, toset); in vn_irflag_set() 7331 vn_irflag_set_cond_locked(struct vnode *vp, short toset) in vn_irflag_set_cond_locked() argument 7337 atomic_store_short(&vp->v_irflag, flags | toset); in vn_irflag_set_cond_locked() 7341 vn_irflag_set_cond(struct vnode *vp, short toset) in vn_irflag_set_cond() argument 7345 vn_irflag_set_cond_locked(vp, toset); in vn_irflag_set_cond()
|
/freebsd/contrib/tcsh/ |
H A D | sh.func.c | 1828 # define toset(a) (((a) == 3) ? 1004 : (a) + 1) macro 1832 # define toset(a) ((a) + 1) macro 2352 if (ulimit(toset(lp->limconst), limit) < 0) {
|
/freebsd/sys/net/ |
H A D | if_var.h | 605 int if_sethwassistbits(if_t ifp, int toset, int toclear);
|
H A D | if.c | 4423 if_sethwassistbits(if_t ifp, int toset, int toclear) in if_sethwassistbits() argument 4426 ifp->if_hwassist |= toset; in if_sethwassistbits()
|