HomeSort by: relevance | last modified time | path
    Searched defs:SecondByte (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
JSON.cpp 569 uint8_t SecondByte = 0x80 | (Rune & 0x3F);
571 Out.push_back(SecondByte);
574 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6);
577 Out.push_back(SecondByte);
581 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12);
585 Out.push_back(SecondByte);
YAMLParser.cpp 564 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F);
566 Result.push_back(SecondByte);
569 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6);
572 Result.push_back(SecondByte);
576 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12);
580 Result.push_back(SecondByte);

Completed in 16 milliseconds