HomeSort by relevance Sort by last modified time
    Searched refs:HexStr (Results 1 - 7 of 7) sorted by null

  /external/libppp/src/
defs.h 136 extern const char *HexStr(long, char *, size_t);
defs.c 354 HexStr(long val, char *buf, size_t sz)
cbcp.c 157 return HexStr(s, NULL, 0);
220 return HexStr(type, NULL, 0);
ip.c 119 return HexStr(qclass, failure, sizeof failure);
146 return HexStr(qtype, failure, sizeof failure);
ccp.c 140 return HexStr(proto, NULL, 0);
lcp.c 150 return HexStr(proto, NULL, 0);
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 659 std::string HexStr = utohexstr(*i);
660 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
681 std::string HexStr = utohexstr(UnicodeScalarValue.first);
682 if (HexStr.size() <= 2)
683 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
684 else if (HexStr.size() <= 4)
685 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr;
    [all...]

Completed in 2068 milliseconds