Searched refs:HexStr (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 731 std::string HexStr = utohexstr(*i); in escape() 732 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape() 756 std::string HexStr = utohexstr(UnicodeScalarValue.first); in escape() 757 if (HexStr.size() <= 2) in escape() 758 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape() 759 else if (HexStr.size() <= 4) in escape() 760 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr; in escape() 723 std::string HexStr = utohexstr(*i); escape() local 748 std::string HexStr = utohexstr(UnicodeScalarValue.first); escape() local [all...] |
/freebsd/usr.sbin/ppp/ |
H A D | defs.h | 138 extern const char *HexStr(long, char *, size_t);
|
H A D | defs.c | 345 HexStr(long val, char *buf, size_t sz) in HexStr() function
|
H A D | cbcp.c | 157 return HexStr(s, NULL, 0); in cbcpstate() 220 return HexStr(type, NULL, 0); in cbcp_data_Type()
|
H A D | ip.c | 119 return HexStr(qclass, failure, sizeof failure); in dns_Qclass2Txt() 146 return HexStr(qtype, failure, sizeof failure); in dns_Qtype2Txt()
|
H A D | ccp.c | 140 return HexStr(proto, NULL, 0); in protoname()
|
H A D | lcp.c | 150 return HexStr(proto, NULL, 0); in protoname()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 985 StringRef HexStr(TokStart + 3, len); in LexIdentifier() local 986 if (!all_of(HexStr, isxdigit)) { in LexIdentifier() 991 APInt Tmp(bits, HexStr, 16); in LexIdentifier()
|