Home
last modified time | relevance | path

Searched refs:MAX_HEX (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/security/dlp_permission_service/frameworks/common/src/
H A Dhex_string.cpp24 static const int32_t MAX_HEX = 16; variable
64 return MAX_HEX; // max hex must < 16 in CharToHex()
80 if (high == MAX_HEX || low == MAX_HEX) { // max hex must < 16 in HexStringToByte()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/net_helper/
H A Dipv6_address.cpp32 constexpr int MAX_HEX = 16; variable
330 if (addrDec % MAX_HEX < MAX_DEC) { in BinToHex()
331 buf[0] = addrDec % MAX_HEX + '0'; in BinToHex()
334 buf[0] = addrDec % MAX_HEX - MAX_DEC + 'a'; in BinToHex()