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