Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/ctype/
Djp2uc.c55 unsigned char byte1, byte2; in __jp2uc() local
66 byte2 = (c & 0xff) + 0x80; in __jp2uc()
70 byte2 = (c & 0xff); in __jp2uc()
74 byte2 = c & 0xff; in __jp2uc()
75 if (byte2 <= 0x9e) in __jp2uc()
78 byte2 = (byte2 - 31) + 0xa1; in __jp2uc()
83 byte2 = (byte2 - 126) + 0xa1; in __jp2uc()
99 index = (byte1 - 0xb0) * 0xfe + (byte2 - 0xa1); in __jp2uc()
104 index = (byte1 - 0xd0) * 0xfe + (byte2 - 0xa1); in __jp2uc()
112 return (wint_t)a1[byte2 - 0xa1]; in __jp2uc()
[all …]