Lines Matching refs:TARG
472 #define ARM_MERGE_FEATURE_SETS(TARG,F1,F2) \
475 (TARG).core[0] = (F1).core[0] | (F2).core[0]; \
476 (TARG).core[1] = (F1).core[1] | (F2).core[1]; \
477 (TARG).core[2] = (F1).core[2] | (F2).core[2]; \
478 (TARG).coproc = (F1).coproc | (F2).coproc; \
482 #define ARM_CLEAR_FEATURE(TARG,F1,F2) \
485 (TARG).core[0] = (F1).core[0] &~ (F2).core[0]; \
486 (TARG).core[1] = (F1).core[1] &~ (F2).core[1]; \
487 (TARG).core[2] = (F1).core[2] &~ (F2).core[2]; \
488 (TARG).coproc = (F1).coproc &~ (F2).coproc; \