Lines Matching refs:pm
35 #define FbInitializeMergeRop(alu,pm) {\
38 _ca1 = _bits->ca1 & pm; \
39 _cx1 = _bits->cx1 | ~pm; \
40 _ca2 = _bits->ca2 & pm; \
41 _cx2 = _bits->cx2 & pm; \
44 #define FbDestInvarientRop(alu,pm) ((pm) == FB_ALLONES && \
79 #define fbXorT(rop,fg,pm,t) ((((fg) & fbFillFromBit((rop) >> 1,t)) | \
80 (~(fg) & fbFillFromBit((rop) >> 3,t))) & (pm))
82 #define fbAndT(rop,fg,pm,t) ((((fg) & fbFillFromBit (rop ^ (rop>>1),t)) | \
84 ~(pm))
86 #define fbXor(rop,fg,pm) fbXorT(rop,fg,pm,FbBits)
88 #define fbAnd(rop,fg,pm) fbAndT(rop,fg,pm,FbBits)
90 #define fbXorStip(rop,fg,pm) fbXorT(rop,fg,pm,FbStip)
92 #define fbAndStip(rop,fg,pm) fbAndT(rop,fg,pm,FbStip)