Searched refs:HexStr (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXMCExpr.cpp | 42 std::string HexStr(utohexstr(API.getZExtValue())); in PrintImpl() local 43 if (HexStr.length() < NumHex) in PrintImpl() 44 OS << std::string(NumHex - HexStr.length(), '0'); in PrintImpl()
|
/external/llvm/lib/Support/ |
D | YAMLParser.cpp | 659 std::string HexStr = utohexstr(*i); in escape() local 660 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape() 681 std::string HexStr = utohexstr(UnicodeScalarValue.first); in escape() local 682 if (HexStr.size() <= 2) in escape() 683 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr; in escape() 684 else if (HexStr.size() <= 4) in escape() 685 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr; in escape() 686 else if (HexStr.size() <= 8) in escape() 687 EscapedInput += "\\U" + std::string(8 - HexStr.size(), '0') + HexStr; in escape()
|
/external/libppp/src/ |
D | defs.h | 136 extern const char *HexStr(long, char *, size_t);
|
D | defs.c | 354 HexStr(long val, char *buf, size_t sz) in HexStr() function
|
D | cbcp.c | 157 return HexStr(s, NULL, 0); in cbcpstate() 220 return HexStr(type, NULL, 0); in cbcp_data_Type()
|
D | ip.c | 119 return HexStr(qclass, failure, sizeof failure); in dns_Qclass2Txt() 146 return HexStr(qtype, failure, sizeof failure); in dns_Qtype2Txt()
|
D | ccp.c | 140 return HexStr(proto, NULL, 0); in protoname()
|
D | lcp.c | 150 return HexStr(proto, NULL, 0); in protoname()
|