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

  /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/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/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/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 1460 milliseconds