HomeSort by relevance Sort by last modified time
    Searched refs:FirstByte (Results 1 - 10 of 10) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
XmlParserMisc.py 51 FirstByte = int(ValueList[Index], 16)
56 if FirstByte not in xrange(0x20, 0x7F):
58 TransferedStr += ('%c')%FirstByte
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
JSON.cpp 406 uint8_t FirstByte = 0xC0 | ((Rune & 0x7C0) >> 6);
408 Out.push_back(FirstByte);
411 uint8_t FirstByte = 0xE0 | ((Rune & 0xF000) >> 12);
414 Out.push_back(FirstByte);
418 uint8_t FirstByte = 0xF0 | ((Rune & 0x1F0000) >> 18);
422 Out.push_back(FirstByte);
YAMLParser.cpp 571 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6);
573 Result.push_back(FirstByte);
576 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12);
579 Result.push_back(FirstByte);
583 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18);
587 Result.push_back(FirstByte);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 213 uint8_t FirstByte = Annotations.front();
216 if ((FirstByte & 0x80) == 0x00)
217 return FirstByte;
225 if ((FirstByte & 0xC0) == 0x80)
226 return ((FirstByte & 0x3F) << 8) | SecondByte;
240 if ((FirstByte & 0xE0) == 0xC0)
241 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) |
  /external/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 311 uint8_t FirstByte = Annotations.front();
314 if ((FirstByte & 0x80) == 0x00)
315 return FirstByte;
323 if ((FirstByte & 0xC0) == 0x80)
324 return ((FirstByte & 0x3F) << 8) | SecondByte;
338 if ((FirstByte & 0xE0) == 0xC0)
339 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) |
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 578 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6);
580 Result.push_back(FirstByte);
583 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12);
586 Result.push_back(FirstByte);
590 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18);
594 Result.push_back(FirstByte);
    [all...]
  /external/clang/lib/Analysis/
FormatString.cpp 271 const char FirstByte = *SB;
276 unsigned NumBytes = getNumBytesForUTF8(FirstByte);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 799 milliseconds