Lines Matching defs:mask
233 void UnityPrintMask(const UNITY_UINT mask, const UNITY_UINT number)
240 if (current_bit & mask)
513 void UnityAssertBits(const UNITY_INT mask,
521 if ((mask & expected) != (mask & actual))
525 UnityPrintMask((UNITY_UINT)mask, (UNITY_UINT)expected);
527 UnityPrintMask((UNITY_UINT)mask, (UNITY_UINT)actual);
654 UNITY_INT mask = 1;
655 mask = (mask << 8 * length) - 1;
656 expect_val &= mask;
657 actual_val &= mask;