Lines Matching refs:style

283 static void UnityPrintNumberByStyle(const _U_SINT number, const UNITY_DISPLAY_STYLE_T style);
357 static void UnityPrintNumberByStyle(const _U_SINT number, const UNITY_DISPLAY_STYLE_T style) in UnityPrintNumberByStyle() argument
359 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT) in UnityPrintNumberByStyle()
363 else if ((style & UNITY_DISPLAY_RANGE_UINT) == UNITY_DISPLAY_RANGE_UINT) in UnityPrintNumberByStyle()
365 … UnityPrintNumberUnsigned((_U_UINT)number & UnitySizeMask[((_U_UINT)style & (_U_UINT)0x0F) - 1]); in UnityPrintNumberByStyle()
369 UnityPrintNumberHex((_U_UINT)number, (style & 0x000FU) << 1); in UnityPrintNumberByStyle()
665 const UNITY_DISPLAY_STYLE_T style) in UnityAssertEqualNumber() argument
673 UnityPrintNumberByStyle(expected, style); in UnityAssertEqualNumber()
675 UnityPrintNumberByStyle(actual, style); in UnityAssertEqualNumber()
691 const UNITY_DISPLAY_STYLE_T style) in UnityAssertEqualIntArray() argument
731 switch (style & ~UNITY_DISPLAY_RANGE_AUTO) in UnityAssertEqualIntArray()
744 UnityPrintNumberByStyle(*ptr_exp, style); in UnityAssertEqualIntArray()
746 UnityPrintNumberByStyle(*ptr_act, style); in UnityAssertEqualIntArray()
765 UnityPrintNumberByStyle(*(const _US16 *)ptr_exp, style); in UnityAssertEqualIntArray()
767 UnityPrintNumberByStyle(*(const _US16 *)ptr_act, style); in UnityAssertEqualIntArray()
787 UnityPrintNumberByStyle(*(_US64 *)ptr_exp, style); in UnityAssertEqualIntArray()
789 UnityPrintNumberByStyle(*(_US64 *)ptr_act, style); in UnityAssertEqualIntArray()
807 UnityPrintNumberByStyle(*(const _US32 *)ptr_exp, style); in UnityAssertEqualIntArray()
809 UnityPrintNumberByStyle(*(const _US32 *)ptr_act, style); in UnityAssertEqualIntArray()
1221 const UNITY_DISPLAY_STYLE_T style) in UnityAssertNumbersWithin() argument
1225 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT) in UnityAssertNumbersWithin()
1252 UnityPrintNumberByStyle(delta, style); in UnityAssertNumbersWithin()
1254 UnityPrintNumberByStyle(expected, style); in UnityAssertNumbersWithin()
1256 UnityPrintNumberByStyle(actual, style); in UnityAssertNumbersWithin()