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

  /external/llvm/lib/Target/NVPTX/
NVPTXMCExpr.cpp 43 std::string HexStr(utohexstr(API.getZExtValue()));
44 if (HexStr.length() < NumHex)
45 OS << std::string(NumHex - HexStr.length(), '0');
  /external/llvm/lib/Support/
YAMLParser.cpp 724 std::string HexStr = utohexstr(*i);
725 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
746 std::string HexStr = utohexstr(UnicodeScalarValue.first);
747 if (HexStr.size() <= 2)
748 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
749 else if (HexStr.size() <= 4)
750 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr;
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 799 StringRef HexStr(TokStart + 3, len);
800 if (!std::all_of(HexStr.begin(), HexStr.end(), isxdigit)) {
805 APInt Tmp(bits, HexStr, 16);

Completed in 437 milliseconds