Home | History | Annotate | Download | only in src

Lines Matching defs:second

219   byte second = str[1] ^ 0x80;
220 if (second & 0xC0) {
229 uchar code_point = ((first << 6) | second) & kMaxTwoByteChar;
247 uchar code_point = ((((first << 6) | second) << 6) | third)
266 uchar code_point = (((((first << 6 | second) << 6) | third) << 6) | fourth)