Searched refs:PW_NOR (Results 1 – 2 of 2) sorted by relevance
63 static_assert(PW_NOR(ZERO(), 0) == 1); in TEST()64 static_assert(PW_NOR(ZERO(), ONE) == 0); in TEST()65 static_assert(PW_NOR(1, 0) == 0); in TEST()66 static_assert(PW_NOR(ONE, PW_NOT(ZERO())) == 0); in TEST()
73 #define PW_NOR(a, b) PW_NOT(PW_OR(a, b)) macro