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

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