7 references to LOW_SURROGATE_START
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Char.cs (5)
1006return IsBetween(c, CharUnicodeInfo.LOW_SURROGATE_START, CharUnicodeInfo.LOW_SURROGATE_END); 1053uint lowSurrogateOffset = (uint)lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START; 1088uint lowSurrogateOffset = (uint)lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START; 1100return ((int)highSurrogateOffset << 10) + (lowSurrogate - CharUnicodeInfo.LOW_SURROGATE_START) + (0x40 << 10); 1155int 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;