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

  /external/clang/lib/Analysis/
FormatString.cpp 271 const char FirstByte = *SB;
276 unsigned NumBytes = getNumBytesForUTF8(FirstByte);
  /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/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 624 milliseconds