13 references to FinalByte
mscorlib (13)
system\text\utf8encoding.cs (13)
1348
if ((ch &
FinalByte
) == 0) {
1353
if ((ch & (
FinalByte
>> 6)) != 0) {
1433
ch |= (
FinalByte
>> 3*6) | // Final byte is 3 more bytes from now
1445
ch = (ch & 0x0F) | ( (
FinalByte
>> 2*6) | (1 << 30) |
1464
ch |= (
FinalByte
>> 6);
1743
if ((ch &
FinalByte
) == 0) {
1750
if ((ch & (
FinalByte
>> 6)) != 0) {
1847
ch |= (
FinalByte
>> 3*6) | (1 << 30) | (3 << (30-2*6)) |
1853
ch = (ch & 0x0F) | ( (
FinalByte
>> 2*6) | (1 << 30) |
1868
ch |= (
FinalByte
>> 6);
2288
if ((ch & (
FinalByte
>> 6)) != 0)
2297
else if ((ch & (
FinalByte
>> 12)) != 0)
2315
if ((ch & (
FinalByte
>> 6)) != 0)