7 references to LOW_SURROGATE_START
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Char.cs (5)
973return IsBetween(c, CharUnicodeInfo.LOW_SURROGATE_START, CharUnicodeInfo.LOW_SURROGATE_END); 1020uint lowSurrogateOffset = (uint)lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START; 1055uint lowSurrogateOffset = (uint)lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START; 1067return ((int)highSurrogateOffset << 10) + (lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START) + (0x40 << 10); 1122int temp2 = s[index + 1] - CharUnicodeInfo.LOW_SURROGATE_START;
src\libraries\System.Private.CoreLib\src\System\Globalization\CharUnicodeInfo.cs (2)
69int temp2 = (int)s[index + 1] - LOW_SURROGATE_START; // temp2 = 000000xxxxxxxxxx 428int temp2 = s[index] - LOW_SURROGATE_START;