Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp709 std::string HexStr = utohexstr(*i); in escape() local
710 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape()
734 std::string HexStr = utohexstr(UnicodeScalarValue.first); in escape() local
735 if (HexStr.size() <= 2) in escape()
736 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape()
737 else if (HexStr.size() <= 4) in escape()
738 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr; in escape()
739 else if (HexStr.size() <= 8) in escape()
740 EscapedInput += "\\U" + std::string(8 - HexStr.size(), '0') + HexStr; in escape()
/freebsd-13.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-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp976 StringRef HexStr(TokStart + 3, len); in LexIdentifier() local
977 if (!all_of(HexStr, isxdigit)) { in LexIdentifier()
982 APInt Tmp(bits, HexStr, 16); in LexIdentifier()