4 references to UNICODE_PLANE01_START
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Globalization\CharUnicodeInfo.cs (4)
74
c = (temp1 << 10) + temp2 +
UNICODE_PLANE01_START
;
113
c = (temp1 << 10) + temp2 +
UNICODE_PLANE01_START
;
411
charLength = (codePoint >=
UNICODE_PLANE01_START
) ? 2 /* surrogate pair */ : 1 /* BMP char */;
458
codePoint = (temp1 << 10) + temp2 +
UNICODE_PLANE01_START
;