Searched refs:UcnVal (Results 1 – 1 of 1) sorted by relevance
276 uint32_t &UcnVal, unsigned short &UcnLen, in ProcessUCNEscape() argument296 UcnVal <<= 4; in ProcessUCNEscape()297 UcnVal |= CharVal; in ProcessUCNEscape()308 if ((0xD800 <= UcnVal && UcnVal <= 0xDFFF) || // surrogate codepoints in ProcessUCNEscape()309 UcnVal > 0x10FFFF) { // maximum legal UTF32 value in ProcessUCNEscape()318 if (UcnVal < 0xa0 && in ProcessUCNEscape()319 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60)) { // $, @, ` in ProcessUCNEscape()322 char BasicSCSChar = UcnVal; in ProcessUCNEscape()323 if (UcnVal >= 0x20 && UcnVal < 0x7f) in ProcessUCNEscape()353 uint32_t UcnVal = 0; in MeasureUCNEscape() local[all …]