Searched refs:HexStr (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 717 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 D | ELFDump.cpp | 72 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 D | defs.h | 140 extern const char *HexStr(long, char *, size_t);
|
| H A D | defs.c | 347 HexStr(long val, char *buf, size_t sz) in HexStr() function
|
| H A D | cbcp.c | 159 return HexStr(s, NULL, 0); in cbcpstate() 222 return HexStr(type, NULL, 0); in cbcp_data_Type()
|
| H A D | ip.c | 121 return HexStr(qclass, failure, sizeof failure); in dns_Qclass2Txt() 148 return HexStr(qtype, failure, sizeof failure); in dns_Qtype2Txt()
|
| H A D | ccp.c | 142 return HexStr(proto, NULL, 0); in protoname()
|
| H A D | lcp.c | 152 return HexStr(proto, NULL, 0); in protoname()
|
| /freebsd-12.1/contrib/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 936 StringRef HexStr(TokStart + 3, len); in LexIdentifier() local 937 if (!all_of(HexStr, isxdigit)) { in LexIdentifier() 942 APInt Tmp(bits, HexStr, 16); in LexIdentifier()
|