Lines Matching refs:style
172 static void UnityPrintNumberByStyle(const _U_SINT number, const UNITY_DISPLAY_STYLE_T style);
246 static void UnityPrintNumberByStyle(const _U_SINT number, const UNITY_DISPLAY_STYLE_T style) in UnityPrintNumberByStyle() argument
248 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT) in UnityPrintNumberByStyle()
252 else if ((style & UNITY_DISPLAY_RANGE_UINT) == UNITY_DISPLAY_RANGE_UINT) in UnityPrintNumberByStyle()
254 … UnityPrintNumberUnsigned((_U_UINT)number & UnitySizeMask[((_U_UINT)style & (_U_UINT)0x0F) - 1]); in UnityPrintNumberByStyle()
258 UnityPrintNumberHex((_U_UINT)number, (style & 0x000FU) << 1); in UnityPrintNumberByStyle()
554 const UNITY_DISPLAY_STYLE_T style) in UnityAssertEqualNumber() argument
562 UnityPrintNumberByStyle(expected, style); in UnityAssertEqualNumber()
564 UnityPrintNumberByStyle(actual, style); in UnityAssertEqualNumber()
580 const UNITY_DISPLAY_STYLE_T style) in UnityAssertEqualIntArray() argument
620 switch (style & ~UNITY_DISPLAY_RANGE_AUTO) in UnityAssertEqualIntArray()
633 UnityPrintNumberByStyle(*ptr_exp, style); in UnityAssertEqualIntArray()
635 UnityPrintNumberByStyle(*ptr_act, style); in UnityAssertEqualIntArray()
654 UnityPrintNumberByStyle(*(const _US16 *)ptr_exp, style); in UnityAssertEqualIntArray()
656 UnityPrintNumberByStyle(*(const _US16 *)ptr_act, style); in UnityAssertEqualIntArray()
676 UnityPrintNumberByStyle(*(_US64 *)ptr_exp, style); in UnityAssertEqualIntArray()
678 UnityPrintNumberByStyle(*(_US64 *)ptr_act, style); in UnityAssertEqualIntArray()
696 UnityPrintNumberByStyle(*(const _US32 *)ptr_exp, style); in UnityAssertEqualIntArray()
698 UnityPrintNumberByStyle(*(const _US32 *)ptr_act, style); in UnityAssertEqualIntArray()
1110 const UNITY_DISPLAY_STYLE_T style) in UnityAssertNumbersWithin() argument
1114 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT) in UnityAssertNumbersWithin()
1141 UnityPrintNumberByStyle(delta, style); in UnityAssertNumbersWithin()
1143 UnityPrintNumberByStyle(expected, style); in UnityAssertNumbersWithin()
1145 UnityPrintNumberByStyle(actual, style); in UnityAssertNumbersWithin()