Home
last modified time | relevance | path

Searched refs:FirstByte (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DJSON.cpp406 uint8_t FirstByte = 0xC0 | ((Rune & 0x7C0) >> 6); in encodeUtf8() local
408 Out.push_back(FirstByte); in encodeUtf8()
411 uint8_t FirstByte = 0xE0 | ((Rune & 0xF000) >> 12); in encodeUtf8() local
414 Out.push_back(FirstByte); in encodeUtf8()
418 uint8_t FirstByte = 0xF0 | ((Rune & 0x1F0000) >> 18); in encodeUtf8() local
422 Out.push_back(FirstByte); in encodeUtf8()
DYAMLParser.cpp571 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local
573 Result.push_back(FirstByte); in encodeUTF8()
576 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local
579 Result.push_back(FirstByte); in encodeUTF8()
583 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local
587 Result.push_back(FirstByte); in encodeUTF8()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h213 uint8_t FirstByte = Annotations.front(); in GetCompressedAnnotation() local
216 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()
/external/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h311 uint8_t FirstByte = Annotations.front(); in GetCompressedAnnotation() local
314 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()
/external/llvm/lib/Support/
DYAMLParser.cpp578 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local
580 Result.push_back(FirstByte); in encodeUTF8()
583 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local
586 Result.push_back(FirstByte); in encodeUTF8()
590 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local
594 Result.push_back(FirstByte); in encodeUTF8()
/external/clang/lib/Analysis/
DFormatString.cpp271 const char FirstByte = *SB; in ParseUTF8InvalidSpecifier() local
276 unsigned NumBytes = getNumBytesForUTF8(FirstByte); in ParseUTF8InvalidSpecifier()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.cpp1045 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI); in addTokenForArgument() local
1046 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()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp2873 int64_t FirstByte = MFI->getObjectOffset(ClobberedFI); in addTokenForArgument() local
2874 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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp3400 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI); in addTokenForArgument() local
3401 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()