Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/stdio/
Dvfwprintf.c417 wchar_t ox[2]; /* space for 0x hex-prefix */ in VFWPRINTF() local
997 ox[0] = L'0'; in VFWPRINTF()
998 ox[1] = ch == L'a' ? L'x' : L'X'; in VFWPRINTF()
1146 ox[0] = L'0'; in VFWPRINTF()
1147 ox[1] = ch = L'x'; in VFWPRINTF()
1275 ox[0] = L'0'; in VFWPRINTF()
1276 ox[1] = ch; in VFWPRINTF()
1417 PRINT (ox, 2); in VFWPRINTF()
Dvfprintf.c446 char ox[2] = {0}; /* space for 0x hex-prefix */ in VFPRINTF() local
1037 ox[0] = '0'; in VFPRINTF()
1038 ox[1] = ch == 'a' ? 'x' : 'X'; in VFPRINTF()
1180 ox[0] = '0'; in VFPRINTF()
1181 ox[1] = ch = 'x'; in VFPRINTF()
1295 ox[0] = '0'; in VFPRINTF()
1296 ox[1] = ch; in VFPRINTF()
1439 PRINT (ox, 2); in VFPRINTF()
/picolibc-latest/newlib/
DChangeLog-201510004 * libc/stdio/vfprintf.c (_VFPRINTF_R): Populate 'ox' when