Lines Matching defs:compare
557 const UNITY_COMPARISON_T compare,
565 if (threshold == actual && compare & UNITY_EQUAL_TO) return;
570 if (actual > threshold && compare & UNITY_SMALLER_THAN) failed = 1;
571 if (actual < threshold && compare & UNITY_GREATER_THAN) failed = 1;
575 if ((UNITY_UINT)actual > (UNITY_UINT)threshold && compare & UNITY_SMALLER_THAN) failed = 1;
576 if ((UNITY_UINT)actual < (UNITY_UINT)threshold && compare & UNITY_GREATER_THAN) failed = 1;
584 if (compare & UNITY_GREATER_THAN) UnityPrint(UnityStrGt);
585 if (compare & UNITY_SMALLER_THAN) UnityPrint(UnityStrLt);
586 if (compare & UNITY_EQUAL_TO) UnityPrint(UnityStrOrEqual);
1013 /* if both pointers not null compare the strings */
1053 /* if both pointers not null compare the strings */
1126 /* if both pointers not null compare the strings */