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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
JSON.cpp 413 uint8_t ThirdByte = 0x80 | (Rune & 0x3F);
416 Out.push_back(ThirdByte);
420 uint8_t ThirdByte = 0x80 | ((Rune & 0xFC0) >> 6);
424 Out.push_back(ThirdByte);
YAMLParser.cpp 578 uint8_t ThirdByte = 0x80 | (UnicodeScalarValue & 0x3F);
581 Result.push_back(ThirdByte);
585 uint8_t ThirdByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6);
589 Result.push_back(ThirdByte);
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 585 uint8_t ThirdByte = 0x80 | (UnicodeScalarValue & 0x3F);
588 Result.push_back(ThirdByte);
592 uint8_t ThirdByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6);
596 Result.push_back(ThirdByte);
    [all...]

Completed in 430 milliseconds