Lines Matching refs:format
70 void MyPrintf(char *format, ...) in MyPrintf() argument
80 va_start(vaArgP, format); in MyPrintf()
82 while (*format) in MyPrintf()
85 for (ulIdx = 0; (format[ulIdx] != '%') && (format[ulIdx] != '\0'); ulIdx++) in MyPrintf()
91 printfsend((uint8_t *)format, ulIdx); in MyPrintf()
94 format += ulIdx; in MyPrintf()
96 if (*format == '%') in MyPrintf()
98 format++; in MyPrintf()
106 switch (*format++) in MyPrintf()
119 if ((format[-1] == '0') && (ulCount == 0)) in MyPrintf()
125 ulCount += format[-1] - '0'; in MyPrintf()
251 printfsend((uint8_t *)format - 1, 1); in MyPrintf()