Home
last modified time | relevance | path

Searched refs:xp (Results 1 – 8 of 8) sorted by relevance

/xnu-11215/bsd/miscfs/bindfs/
H A Dbind_subr.c191 hd = BIND_NHASH(xp->bind_lowervp); in bind_hashins()
214 xp->bind_flags |= BIND_FLAG_HASHED; in bind_hashins()
235 bind_hashrem(struct bind_node * xp) in bind_hashrem() argument
239 LIST_REMOVE(xp, bind_hash); in bind_hashrem()
247 struct bind_node * xp; in bind_nodecreate() local
251 xp->bind_lowervp = lowervp; in bind_nodecreate()
254 return xp; in bind_nodecreate()
267 if (xp == NULL) { in bind_getnewvnode()
290 xp->bind_vnode = *vpp; in bind_getnewvnode()
291 xp->bind_myvid = vnode_vid(*vpp); in bind_getnewvnode()
[all …]
H A Dbindfs.h125 #define BINDTOV(xp) ((xp)->bind_vnode) argument
136 void bind_hashrem(struct bind_node * xp);
H A Dbind_vnops.c273 struct bind_node * xp; in bind_reclaim() local
280 xp = VTOBIND(vp); in bind_reclaim()
281 lowervp = xp->bind_lowervp; in bind_reclaim()
285 bind_hashrem(xp); in bind_reclaim()
291 kfree_type(struct bind_node, xp); in bind_reclaim()
/xnu-11215/bsd/miscfs/nullfs/
H A Dnull_subr.c195 hd = NULL_NHASH(xp->null_lowervp); in null_hashins()
222 xp->null_flags |= NULL_FLAG_HASHED; in null_hashins()
243 null_hashrem(struct null_node * xp) in null_hashrem() argument
246 LIST_REMOVE(xp, null_hash); in null_hashrem()
253 struct null_node * xp; in null_nodecreate() local
257 xp->null_lowervp = lowervp; in null_nodecreate()
260 return xp; in null_nodecreate()
273 if (xp == NULL) { in null_getnewvnode()
296 xp->null_vnode = *vpp; in null_getnewvnode()
297 xp->null_myvid = vnode_vid(*vpp); in null_getnewvnode()
[all …]
H A Dnullfs.h135 #define NULLTOV(xp) ((xp)->null_vnode) argument
148 void null_hashrem(struct null_node * xp);
H A Dnull_vnops.c662 struct null_node * xp; in null_reclaim() local
670 xp = VTONULL(vp); in null_reclaim()
671 lowervp = xp->null_lowervp; in null_reclaim()
680 if (xp->null_flags & NULL_FLAG_HASHED) { in null_reclaim()
685 null_hashrem(xp); in null_reclaim()
701 kfree_type(struct null_node, xp); in null_reclaim()
/xnu-11215/tests/
H A Davx.c314 uint32_t *xp = (uint32_t *) &avx_state->__fpu_xmm7; in ymm_sigalrm_handler() local
328 xp[0] = STOP_COOKIE_256; in ymm_sigalrm_handler()
824 uint64_t *xp = (uint64_t *) &avx_state->__fpu_xmm7; in zmm_sigalrm_handler() local
840 xp[0] = STOP_COOKIE_512; in zmm_sigalrm_handler()
853 uint64_t *xp = (uint64_t *) &avx_state->__fpu_xmm7; in zmm_sigalrm_handler_no_mod() local
/xnu-11215/bsd/nfs/
H A Dnfs_serv.c3406 vnode_t vp, xp, dvp, dirp; in nfsrv_link() local
3415 vp = xp = dvp = dirp = NULL; in nfsrv_link()
3465 xp = ni.ni_vp; in nfsrv_link()
3467 if (xp != NULL) { in nfsrv_link()
3519 if (xp) { in nfsrv_link()
3520 vnode_put(xp); in nfsrv_link()