• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/ntp/sntp/unity/

Lines Matching refs:style

120 void UnityPrintNumberByStyle(const _U_SINT number, const UNITY_DISPLAY_STYLE_T style)
122 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT)
126 else if ((style & UNITY_DISPLAY_RANGE_UINT) == UNITY_DISPLAY_RANGE_UINT)
128 UnityPrintNumberUnsigned( (_U_UINT)number & UnitySizeMask[((_U_UINT)style & (_U_UINT)0x0F) - 1] );
132 UnityPrintNumberHex((_U_UINT)number, (char)((style & 0x000F) << 1));
474 const UNITY_DISPLAY_STYLE_T style)
482 UnityPrintNumberByStyle(expected, style);
484 UnityPrintNumberByStyle(actual, style);
496 const UNITY_DISPLAY_STYLE_T style)
515 // If style is UNITY_DISPLAY_STYLE_INT, we'll fall into the default case rather than the INT16 or INT32 (etc) case
518 switch(style & (UNITY_DISPLAY_STYLE_T)(~UNITY_DISPLAY_RANGE_AUTO))
531 UnityPrintNumberByStyle(*ptr_exp, style);
533 UnityPrintNumberByStyle(*ptr_act, style);
552 UnityPrintNumberByStyle(*(UNITY_PTR_ATTRIBUTE const _US16*)(void*)ptr_exp, style);
554 UnityPrintNumberByStyle(*(UNITY_PTR_ATTRIBUTE const _US16*)(void*)ptr_act, style);
574 UnityPrintNumberByStyle(*(UNITY_PTR_ATTRIBUTE const _US64*)(void*)ptr_exp, style);
576 UnityPrintNumberByStyle(*(UNITY_PTR_ATTRIBUTE const _US64*)(void*)ptr_act, style);
594 UnityPrintNumberByStyle(*(UNITY_PTR_ATTRIBUTE const _US32*)(void*)ptr_exp, style);
596 UnityPrintNumberByStyle(*(UNITY_PTR_ATTRIBUTE const _US32*)(void*)ptr_act, style);
706 const UNITY_FLOAT_TRAIT_T style)
709 _U_SINT should_be_trait = ((_U_SINT)style & 1);
711 _U_SINT trait_index = style >> 1;
715 switch(style)
868 const UNITY_FLOAT_TRAIT_T style)
871 _U_SINT should_be_trait = ((_U_SINT)style & 1);
873 _U_SINT trait_index = style >> 1;
877 switch(style)
937 const UNITY_DISPLAY_STYLE_T style)
941 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT)
960 UnityPrintNumberByStyle(delta, style);
962 UnityPrintNumberByStyle(expected, style);
964 UnityPrintNumberByStyle(actual, style);