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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
JSON.cpp 407 uint8_t SecondByte = 0x80 | (Rune & 0x3F);
409 Out.push_back(SecondByte);
412 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6);
415 Out.push_back(SecondByte);
419 uint8_t SecondByte = 0x80 | ((Rune & 0x3F000) >> 12);
423 Out.push_back(SecondByte);
YAMLParser.cpp 572 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F);
574 Result.push_back(SecondByte);
577 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6);
580 Result.push_back(SecondByte);
584 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12);
588 Result.push_back(SecondByte);
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 579 uint8_t SecondByte = 0x80 | (UnicodeScalarValue & 0x3F);
581 Result.push_back(SecondByte);
584 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0xFC0) >> 6);
587 Result.push_back(SecondByte);
591 uint8_t SecondByte = 0x80 | ((UnicodeScalarValue & 0x3F000) >> 12);
595 Result.push_back(SecondByte);
    [all...]

Completed in 480 milliseconds