Searched refs:FirstByte (Results 1 – 2 of 2) sorted by relevance
525 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local527 Result.push_back(FirstByte); in encodeUTF8()530 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local533 Result.push_back(FirstByte); in encodeUTF8()537 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local541 Result.push_back(FirstByte); in encodeUTF8()
2495 int64_t FirstByte = MFI->getObjectOffset(ClobberedFI); in addTokenForArgument() local2496 int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1; in addTokenForArgument()2514 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()2515 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()