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