Home
last modified time | relevance | path

Searched refs:MASK (Results 1 – 6 of 6) sorted by relevance

/foundation/distributeddatamgr/distributeddatamgr/services/distributeddataservice/framework/utils/
Dcrypto.cpp45 constexpr unsigned char MASK = 0x0F; in Sha256() local
50 hash[i * 2] = hexCode[(value >> WIDTH) & MASK]; in Sha256()
51 hash[i * 2 + 1] = hexCode[value & MASK]; in Sha256()
/foundation/communication/wifi/services/wifi_standard/wifi_framework/common/net_helper/
Ddhcpd_interface.h34 #define CALC_SUBNET(IPADD, MASK) ((IPADD) & (MASK)) argument
/foundation/distributedhardware/distributedhardwarefwk/utils/src/
Ddh_utils_tool.cpp90 constexpr unsigned char MASK = 0x0F; in GetDeviceIdByUUID() local
96 hash[i * DOUBLE_TIMES] = hexCode[(value >> WIDTH) & MASK]; in GetDeviceIdByUUID()
97 hash[i * DOUBLE_TIMES + 1] = hexCode[value & MASK]; in GetDeviceIdByUUID()
/foundation/distributedschedule/samgr/services/samgr/native/source/
Dservice_registry.cpp34 constexpr int32_t MASK = 0x100; variable
74 PARCEL_WRITE_HELPER_RET(data, Int32, MASK, nullptr); in CheckService()
95 PARCEL_WRITE_HELPER_RET(data, Int32, MASK, ERR_FLATTEN_OBJECT); in AddService()
/foundation/communication/bluetooth/services/bluetooth_standard/service/src/obex/
Dobex_headers.h44 static const uint8_t MASK = 0xC0; variable
Dobex_headers.cpp32 const uint8_t ObexHdrType::MASK; member in bluetooth::ObexHdrType
129 uint8_t headerDataType = headerId & ObexHdrType::MASK; in ParseOptionalHeaders()