Home
last modified time | relevance | path

Searched refs:HexStr (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Support/
H A DYAMLParser.cpp717 std::string HexStr = utohexstr(*i); in escape() local
718 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape()
742 std::string HexStr = utohexstr(UnicodeScalarValue.first); in escape() local
743 if (HexStr.size() <= 2) in escape()
744 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape()
745 else if (HexStr.size() <= 4) in escape()
746 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr; in escape()
747 else if (HexStr.size() <= 8) in escape()
748 EscapedInput += "\\U" + std::string(8 - HexStr.size(), '0') + HexStr; in escape()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DELFDump.cpp72 std::string HexStr = utohexstr(static_cast<uint64_t>(Dyn.d_tag), true); in printDynamicSection() local
73 outs() << format(" 0x%-19s", HexStr.c_str()); in printDynamicSection()
/freebsd-12.1/usr.sbin/ppp/
H A Ddefs.h140 extern const char *HexStr(long, char *, size_t);
H A Ddefs.c347 HexStr(long val, char *buf, size_t sz) in HexStr() function
H A Dcbcp.c159 return HexStr(s, NULL, 0); in cbcpstate()
222 return HexStr(type, NULL, 0); in cbcp_data_Type()
H A Dip.c121 return HexStr(qclass, failure, sizeof failure); in dns_Qclass2Txt()
148 return HexStr(qtype, failure, sizeof failure); in dns_Qtype2Txt()
H A Dccp.c142 return HexStr(proto, NULL, 0); in protoname()
H A Dlcp.c152 return HexStr(proto, NULL, 0); in protoname()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp936 StringRef HexStr(TokStart + 3, len); in LexIdentifier() local
937 if (!all_of(HexStr, isxdigit)) { in LexIdentifier()
942 APInt Tmp(bits, HexStr, 16); in LexIdentifier()