HomeSort by: relevance | last modified time | path
    Searched refs:ThirdByte (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
JSON.cpp 575 uint8_t ThirdByte = 0x80 | (Rune & 0x3F);
578 Out.push_back(ThirdByte);
582 uint8_t ThirdByte = 0x80 | ((Rune & 0xFC0) >> 6);
586 Out.push_back(ThirdByte);
YAMLParser.cpp 570 uint8_t ThirdByte = 0x80 | (UnicodeScalarValue & 0x3F);
573 Result.push_back(ThirdByte);
577 uint8_t ThirdByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6);
581 Result.push_back(ThirdByte);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 225 uint8_t ThirdByte = Annotations.front();
236 (ThirdByte << 8) | FourthByte;

Completed in 27 milliseconds