Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_printf/
Dprintf.c272 const char digit = (char) (value % base); in _ntoa_long() local
273 …buf[len++] = (char)(digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10); in _ntoa_long()
299 const char digit = (char) (value % base); in _ntoa_long_long() local
300 …buf[len++] = (char)(digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10); in _ntoa_long_long()
/hal_rpi_pico-latest/tools/pioasm/
Dlexer.ll36 digit [0-9]
40 int {digit}+
41 float {digit}*\.{digit}+