Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/lib/os/
Dcbprintf_complete.c800 unsigned int lsv = (unsigned int)(value % radix); in encode_uint() local
803 *bp = (lsv <= 9) ? ('0' + lsv) in encode_uint()
804 : upcase ? ('A' + lsv - 10) : ('a' + lsv - 10); in encode_uint()