Searched refs:xp (Results 1 - 7 of 7) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/nullfs/
H A Dnull.h105 #define NULLTOV(xp) ((xp)->null_vnode)
H A Dnull_subr.c158 struct null_node *xp; local
162 MALLOC(xp, struct null_node *, sizeof(struct null_node), M_TEMP, M_WAITOK);
164 FREE(xp, M_TEMP);
170 xp->null_vnode = vp;
171 vp->v_data = xp;
172 xp->null_lowervp = lowervp;
178 FREE(xp, M_TEMP);
189 LIST_INSERT_HEAD(hd, xp, null_hash);
H A Dnull_vnops.c481 struct null_node *xp = VTONULL(vp); local
482 struct vnode *lowervp = xp->null_lowervp;
489 xp->null_lowervp = NULL;
490 LIST_REMOVE(xp, null_hash);
/macosx-10.5.8/xnu-1228.15.4/bsd/ufs/ufs/
H A Dufs_vnops.c741 struct inode *ip, *xp, *dp; local
825 xp = NULL;
827 xp = VTOI(tvp);
869 xp = VTOI(tvp);
871 xp = NULL;
880 if (xp == NULL) {
908 if (xp->i_dev != dp->i_dev || xp->i_dev != ip->i_dev)
913 if (xp->i_number == ip->i_number)
920 if ((xp
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_catalog.c3906 struct HFSPlusExtentDescriptor *xp; local
3910 xp = &forkp->cf_extents[0];
3916 xp[0].startBlock = (u_int32_t)filep->rsrcExtents[0].startBlock;
3917 xp[0].blockCount = (u_int32_t)filep->rsrcExtents[0].blockCount;
3918 xp[1].startBlock = (u_int32_t)filep->rsrcExtents[1].startBlock;
3919 xp[1].blockCount = (u_int32_t)filep->rsrcExtents[1].blockCount;
3920 xp[2].startBlock = (u_int32_t)filep->rsrcExtents[2].startBlock;
3921 xp[2].blockCount = (u_int32_t)filep->rsrcExtents[2].blockCount;
3927 xp[0].startBlock = (u_int32_t)filep->dataExtents[0].startBlock;
3928 xp[
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_serv.c3128 vnode_t vp, xp, dvp, dirp; local
3137 vp = xp = dvp = dirp = NULL;
3185 xp = ni.ni_vp;
3187 if (xp != NULL)
3228 if (xp)
3229 vnode_put(xp);
/macosx-10.5.8/xnu-1228.15.4/libkern/
H A Dzlib.c4483 uIntf *xp; /* pointer into x */ local
4534 p = c + 1; xp = x + 2;
4536 *xp++ = (j += *p++);
4577 xp = c + k;
4581 if ((f <<= 1) <= *++xp)
4583 f -= *xp; /* else deduct codes from patterns */

Completed in 88 milliseconds