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

  /external/chromium/base/json/
json_reader.cc 22 inline int HexToInt(wchar_t c) {
456 decoded_str.push_back((HexToInt(*(token.begin + i + 1)) << 4) +
457 HexToInt(*(token.begin + i + 2)));
461 decoded_str.push_back((HexToInt(*(token.begin + i + 1)) << 12 ) +
462 (HexToInt(*(token.begin + i + 2)) << 8) +
463 (HexToInt(*(token.begin + i + 3)) << 4) +
464 HexToInt(*(token.begin + i + 4)));
  /external/chromium/net/base/
escape.cc 25 inline char_type HexToInt(char_type ch) {
145 unsigned char value = HexToInt(most_sig_digit) * 16 +
146 HexToInt(least_sig_digit);
net_util.cc 180 inline unsigned char HexToInt(unsigned char c) {
201 unsigned char ch = HexToInt(*(it + 1)) * 16 + HexToInt(*(it + 2));
    [all...]

Completed in 98 milliseconds