Searched refs:ox (Results 1 – 3 of 3) sorted by relevance
417 wchar_t ox[2]; /* space for 0x hex-prefix */ in VFWPRINTF() local997 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()
446 char ox[2] = {0}; /* space for 0x hex-prefix */ in VFPRINTF() local1037 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()
10004 * libc/stdio/vfprintf.c (_VFPRINTF_R): Populate 'ox' when