Lines Matching refs:UCharToPseud2
247 static uint8_t UCharToPseud2[TABLE_SIZE]; /* used for Unicode chars >=0x0100 */ variable
282 UCharToPseud2[i] = '?'; in buildPseudoTables()
309 pseudoToUChar[(uint8_t)'`'] = 0x0300; UCharToPseud2[0x00] = (uint8_t)'`'; /* NSM */ in buildPseudoTables()
310 pseudoToUChar[(uint8_t)'@'] = 0x200E; UCharToPseud2[0x0E] = (uint8_t)'@'; /* LRM */ in buildPseudoTables()
311 pseudoToUChar[(uint8_t)'&'] = 0x200F; UCharToPseud2[0x0F] = (uint8_t)'&'; /* RLM */ in buildPseudoTables()
313 pseudoToUChar[(uint8_t)'|'] = 0x2029; UCharToPseud2[0x29] = (uint8_t)'|'; /* B */ in buildPseudoTables()
314 pseudoToUChar[(uint8_t)'['] = 0x202A; UCharToPseud2[0x2A] = (uint8_t)'['; /* LRE */ in buildPseudoTables()
315 pseudoToUChar[(uint8_t)']'] = 0x202B; UCharToPseud2[0x2B] = (uint8_t)']'; /* RLE */ in buildPseudoTables()
316 pseudoToUChar[(uint8_t)'^'] = 0x202C; UCharToPseud2[0x2C] = (uint8_t)'^'; /* PDF */ in buildPseudoTables()
317 pseudoToUChar[(uint8_t)'{'] = 0x202D; UCharToPseud2[0x2D] = (uint8_t)'{'; /* LRO */ in buildPseudoTables()
318 pseudoToUChar[(uint8_t)'}'] = 0x202E; UCharToPseud2[0x2E] = (uint8_t)'}'; /* RLO */ in buildPseudoTables()
330 UCharToPseud2[uchar & 0x00ff] = c; in buildPseudoTables()
336 UCharToPseud2[uchar & 0x00ff] = c; in buildPseudoTables()
342 UCharToPseud2[uchar & 0x00ff] = c; in buildPseudoTables()
348 UCharToPseud2[uchar & 0x00ff] = c; in buildPseudoTables()
392 UCharToPseud2[uchar & 0x00ff]; in u16ToPseudo()