Lines Matching defs:f
15 #define FL_INIT(l, f) (l) = (f) /* Specific flags location. */ argument
16 #define FL_SET(l, f) ((l) |= (f)) argument
17 #define FL_CLR(l, f) ((l) &= ~(f)) argument
18 #define FL_ISSET(l, f) ((l) & (f)) argument
20 #define LF_INIT(f) FL_INIT(flags, (f)) /* Local variable flags. */ argument
21 #define LF_SET(f) FL_SET(flags, (f)) argument
22 #define LF_CLR(f) FL_CLR(flags, (f)) argument
23 #define LF_ISSET(f) FL_ISSET(flags, (f)) argument
25 #define F_INIT(p, f) FL_INIT((p)->flags, (f)) /* Structure element flags. */ argument
26 #define F_SET(p, f) FL_SET((p)->flags, (f)) argument
27 #define F_CLR(p, f) FL_CLR((p)->flags, (f)) argument
28 #define F_ISSET(p, f) FL_ISSET((p)->flags, (f)) argument