Searched refs:FirstByte (Results 1 – 2 of 2) sorted by relevance
578 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local580 Result.push_back(FirstByte); in encodeUTF8()583 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local586 Result.push_back(FirstByte); in encodeUTF8()590 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local594 Result.push_back(FirstByte); in encodeUTF8()
2814 int64_t FirstByte = MFI->getObjectOffset(ClobberedFI); in addTokenForArgument() local2815 int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1; in addTokenForArgument()2833 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()2834 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()