Lines Matching defs:length
149 void UnityPrintLen(const char* string, const UNITY_UINT32 length)
155 while (*pch && ((UNITY_UINT32)(pch - string) < length))
625 const UNITY_UINT32 length)
631 UnityPrintLen(expected, length);
642 UnityPrintLen(actual, length);
789 unsigned int length = style & 0xF;
818 switch (length)
850 default: /* default is length 4 bytes */
862 length = 4;
868 if ((style & UNITY_DISPLAY_RANGE_UINT) && (length < (UNITY_INT_WIDTH / 8)))
871 mask = (mask << 8 * length) - 1;
1436 unsigned int length = style & 0xF;
1465 switch (length)
1517 default: /* default is length 4 bytes */
1532 length = 4;
1561 if ((style & UNITY_DISPLAY_RANGE_UINT) && (length < (UNITY_INT_WIDTH / 8)))
1564 mask = (mask << 8 * length) - 1;
1631 const UNITY_UINT32 length,
1642 for (i = 0; (i < length) && (expected[i] || actual[i]); i++)
1662 UnityPrintExpectedAndActualStringsLen(expected, actual, length);
1754 const UNITY_UINT32 length,
1775 if (length == 0)
1792 bytes = length;
1805 UnityPrintNumberUnsigned(length - bytes - 1);
1886 * printf length modifier helpers
1918 static enum UnityLengthModifier UnityLengthModifierGet(const char *pch, int *length)
1927 *length = 2;
1932 *length = 1;
1943 *length = 2;
1947 *length = 1;
1956 // Not supported, but should gobble up the length specifier anyway
1958 *length = 1;
1964 *length = 0;