Lines Matching defs:mask
298 void UnityPrintMask(const UNITY_UINT mask, const UNITY_UINT number)
305 if (current_bit & mask)
690 void UnityAssertBits(const UNITY_INT mask,
698 if ((mask & expected) != (mask & actual))
702 UnityPrintMask((UNITY_UINT)mask, (UNITY_UINT)expected);
704 UnityPrintMask((UNITY_UINT)mask, (UNITY_UINT)actual);
870 UNITY_INT mask = 1;
871 mask = (mask << 8 * length) - 1;
872 expect_val &= mask;
873 actual_val &= mask;
1563 UNITY_INT mask = 1;
1564 mask = (mask << 8 * length) - 1;
1565 expect_val &= mask;
1566 actual_val &= mask;
2021 const UNITY_UINT mask = (UNITY_UINT)0 - (UNITY_UINT)1;
2024 UnityPrintMask(mask, number);