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

/freebsd-10.1-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXMCExpr.cpp42 std::string HexStr(utohexstr(API.getZExtValue()));
43 if (HexStr.length() < NumHex)
44 OS << std::string(NumHex - HexStr.length(), '0');
/freebsd-10.1-release/usr.sbin/ppp/
H A Ddefs.h136 extern const char *HexStr(long, char *, size_t);
H A Ddefs.c345 HexStr(long val, char *buf, size_t sz) function
H A Dcbcp.c157 return HexStr(s, NULL, 0);
220 return HexStr(type, NULL, 0);
H A Dip.c119 return HexStr(qclass, failure, sizeof failure);
146 return HexStr(qtype, failure, sizeof failure);
H A Dccp.c140 return HexStr(proto, NULL, 0);
H A Dlcp.c150 return HexStr(proto, NULL, 0);
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DYAMLParser.cpp668 std::string HexStr = utohexstr(*i); local
669 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
690 std::string HexStr = utohexstr(UnicodeScalarValue.first); local
691 if (HexStr.size() <= 2)
692 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
693 else if (HexStr.size() <= 4)
694 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr;
[all...]

Completed in 420 milliseconds