Searched refs:FLAGS_UPPERCASE (Results 1 – 1 of 1) sorted by relevance
95 #define FLAGS_UPPERCASE (1U << 5U) macro252 if ((base == 16U) && !(flags & FLAGS_UPPERCASE) && (len < PICO_PRINTF_NTOA_BUFFER_SIZE)) { in _ntoa_format()254 … } else if ((base == 16U) && (flags & FLAGS_UPPERCASE) && (len < PICO_PRINTF_NTOA_BUFFER_SIZE)) { in _ntoa_format()293 …buf[len++] = (char)(digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10); in _ntoa_long()320 …buf[len++] = (char)(digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10); in _ntoa_long_long()565 out((flags & FLAGS_UPPERCASE) ? 'E' : 'e', buffer, idx++, maxlen); in _etoa()728 flags |= FLAGS_UPPERCASE; in _vsnprintf()787 if (*format == 'F') flags |= FLAGS_UPPERCASE; in _vsnprintf()801 if ((*format == 'E') || (*format == 'G')) flags |= FLAGS_UPPERCASE; in _vsnprintf()857 flags |= FLAGS_ZEROPAD | FLAGS_UPPERCASE; in _vsnprintf()