Home | History | Annotate | Download | only in Common

Lines Matching refs:c2

40       Byte c2;

43 c2 = (Byte)src[srcPos++];
44 if (c2 < 0x80 || c2 >= 0xC0)
47 value |= (c2 - 0x80);
96 UInt32 c2;
99 c2 = src[srcPos++];
100 if (c2 < 0xDC00 || c2 >= 0xE000)
102 value = (((value - 0xD800) << 10) | (c2 - 0xDC00)) + 0x10000;