Home
last modified time | relevance | path

Searched refs:IFF (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/file/magic/Magdir/
H A Diff6 # Daniel Quinlan (quinlan@yggdrasil.com) -- IFF was designed by Electronic
10 # IFF files begin with an 8 byte FORM header, followed by a 4 character
13 0 string FORM IFF data
H A Dimages1211 >20 ubelong 5 IFF,
/dragonfly/sys/vfs/tmpfs/
H A Dtmpfs_subr.c104 KKASSERT(IFF(type == VLNK, target != NULL)); in tmpfs_alloc_node()
105 KKASSERT(IFF(type == VBLK || type == VCHR, rmajor != VNOVAL)); in tmpfs_alloc_node()
505 KKASSERT(IFF(error == 0, *vpp != NULL && vn_islocked(*vpp))); in tmpfs_alloc_vp()
H A Dtmpfs.h446 #define IFF(a, b) (IMPLIES(a, b) && IMPLIES(b, a)) macro