Searched refs:FirstByte (Results 1 – 9 of 9) sorted by relevance
406 uint8_t FirstByte = 0xC0 | ((Rune & 0x7C0) >> 6); in encodeUtf8() local408 Out.push_back(FirstByte); in encodeUtf8()411 uint8_t FirstByte = 0xE0 | ((Rune & 0xF000) >> 12); in encodeUtf8() local414 Out.push_back(FirstByte); in encodeUtf8()418 uint8_t FirstByte = 0xF0 | ((Rune & 0x1F0000) >> 18); in encodeUtf8() local422 Out.push_back(FirstByte); in encodeUtf8()
571 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local573 Result.push_back(FirstByte); in encodeUTF8()576 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local579 Result.push_back(FirstByte); in encodeUTF8()583 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local587 Result.push_back(FirstByte); in encodeUTF8()
213 uint8_t FirstByte = Annotations.front(); in GetCompressedAnnotation() local216 if ((FirstByte & 0x80) == 0x00) in GetCompressedAnnotation()217 return FirstByte; in GetCompressedAnnotation()225 if ((FirstByte & 0xC0) == 0x80) in GetCompressedAnnotation()226 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()240 if ((FirstByte & 0xE0) == 0xC0) in GetCompressedAnnotation()241 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()
311 uint8_t FirstByte = Annotations.front(); in GetCompressedAnnotation() local314 if ((FirstByte & 0x80) == 0x00) in GetCompressedAnnotation()315 return FirstByte; in GetCompressedAnnotation()323 if ((FirstByte & 0xC0) == 0x80) in GetCompressedAnnotation()324 return ((FirstByte & 0x3F) << 8) | SecondByte; in GetCompressedAnnotation()338 if ((FirstByte & 0xE0) == 0xC0) in GetCompressedAnnotation()339 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) | in GetCompressedAnnotation()
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()
271 const char FirstByte = *SB; in ParseUTF8InvalidSpecifier() local276 unsigned NumBytes = getNumBytesForUTF8(FirstByte); in ParseUTF8InvalidSpecifier()
1045 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI); in addTokenForArgument() local1046 int64_t LastByte = FirstByte + MFI.getObjectSize(ClobberedFI) - 1; in addTokenForArgument()1064 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()1065 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()
2873 int64_t FirstByte = MFI->getObjectOffset(ClobberedFI); in addTokenForArgument() local2874 int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1; in addTokenForArgument()2892 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()2893 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()
3400 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI); in addTokenForArgument() local3401 int64_t LastByte = FirstByte + MFI.getObjectSize(ClobberedFI) - 1; in addTokenForArgument()3419 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()3420 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()