Searched refs:oemchar (Results 1 – 1 of 1) sorted by relevance
192 smb_wchar_t oemchar; in ucstooem() local200 while (nbytes != 0 && (oemchar = ucspage->value[*ucs]) != 0) { in ucstooem()201 if (oemchar & 0xff00 && nbytes >= MTS_MB_CHAR_MAX) { in ucstooem()202 *oem++ = oemchar >> 8; in ucstooem()203 *oem++ = (char)oemchar; in ucstooem()206 *oem++ = (char)oemchar; in ucstooem()234 smb_wchar_t oemchar; in oemtoucs() local242 while ((oemchar = (smb_wchar_t)*oem++ & 0xff) != 0) { in oemtoucs()247 if ((oempage->value[oemchar] == 0) && (oemchar != 0)) { in oemtoucs()248 oemchar = oemchar << 8 | (*oem++ & 0xff); in oemtoucs()[all …]