Lines Matching defs:compare

734                                            const UNITY_COMPARISON_T compare,
742 if ((threshold == actual) && (compare & UNITY_EQUAL_TO)) { return; }
747 if ((actual > threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
748 if ((actual < threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
752 if (((UNITY_UINT)actual > (UNITY_UINT)threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
753 if (((UNITY_UINT)actual < (UNITY_UINT)threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
761 if (compare & UNITY_GREATER_THAN) { UnityPrint(UnityStrGt); }
762 if (compare & UNITY_SMALLER_THAN) { UnityPrint(UnityStrLt); }
763 if (compare & UNITY_EQUAL_TO) { UnityPrint(UnityStrOrEqual); }
764 if (compare == UNITY_NOT_EQUAL) { UnityPrint(UnityStrNotEqual); }
1054 const UNITY_COMPARISON_T compare,
1065 if (!(actual < threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
1066 if (!(actual > threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
1068 if ((compare & UNITY_EQUAL_TO) && UnityFloatsWithin(threshold * UNITY_FLOAT_PRECISION, threshold, actual)) { failed = 0; }
1075 if (compare & UNITY_GREATER_THAN) { UnityPrint(UnityStrGt); }
1076 if (compare & UNITY_SMALLER_THAN) { UnityPrint(UnityStrLt); }
1077 if (compare & UNITY_EQUAL_TO) { UnityPrint(UnityStrOrEqual); }
1281 const UNITY_COMPARISON_T compare,
1292 if (!(actual < threshold) && (compare & UNITY_SMALLER_THAN)) { failed = 1; }
1293 if (!(actual > threshold) && (compare & UNITY_GREATER_THAN)) { failed = 1; }
1295 if ((compare & UNITY_EQUAL_TO) && UnityDoublesWithin(threshold * UNITY_DOUBLE_PRECISION, threshold, actual)) { failed = 0; }
1302 if (compare & UNITY_GREATER_THAN) { UnityPrint(UnityStrGt); }
1303 if (compare & UNITY_SMALLER_THAN) { UnityPrint(UnityStrLt); }
1304 if (compare & UNITY_EQUAL_TO) { UnityPrint(UnityStrOrEqual); }
1599 /* if both pointers not null compare the strings */
1639 /* if both pointers not null compare the strings */
1716 /* if both pointers not null compare the strings */