Searched refs:HEX_BASE (Results 1 – 3 of 3) sorted by relevance
39 #define HEX_BASE 16 macro
629 int base = (positiveHex || negativeHex) ? HEX_BASE : DECIMAL_BASE; in StringToLL()649 int base = (s[0] == '0' && (s[1] == 'x' || s[1] == 'X')) ? HEX_BASE : DECIMAL_BASE; in StringToULL()
462 enum { HEX_BASE = 16 }; in VectorStrToVectorUint8() enumerator465 res[i] = (uint8_t)strtol(str[i].c_str(), nullptr, HEX_BASE); in VectorStrToVectorUint8()