Home
last modified time | relevance | path

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

/ohos5.0/base/security/appverify/interfaces/innerkits/appverify_lite/src/
H A Dapp_common.c28 value = (value << BYTE_BITS) | (*(buf + len)); in HapGetInt64()
49 value = (value << BYTE_BITS) | (*(buf + len)); in HapGetUnsignedInt()
64 value = (value << BYTE_BITS) | (*(buf + len)); in HapGetShort()
78 var = var >> (BYTE_BITS); in HapPutInt32()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/include/
H A Dpixel_map_utils.h64 constexpr uint8_t BYTE_BITS = 8; variable
125 return (channel << (BYTE_BITS - bits)) | (channel >> (RGB565_CONVERT_BIT * bits - BYTE_BITS)); in RGB565To32()
/ohos5.0/foundation/arkui/napi/interfaces/inner_api/cjffi/ark_interop/
H A Dark_interop_bigint.cpp47 constexpr int BYTE_BITS = 8; variable
69 value = (value << BYTE_BITS) | bytes[i]; in ARKTS_CreateBigIntWithBytes()
/ohos5.0/base/security/appverify/interfaces/innerkits/appverify_lite/include/
H A Dapp_common.h33 #define BYTE_BITS 8 macro
/ohos5.0/base/telephony/sms_mms/services/sms/
H A Dsms_base_message.cpp38 static constexpr uint8_t BYTE_BITS = 8; variable
337 …((GSM_BEAR_DATA_LEN * BYTE_BITS) - ((headerLen + concat + headerSize) * BYTE_BITS)) / CHARSET_7BIT… in GetMaxSegmentSize()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/src/
H A Dpixel_convert.cpp140 constexpr uint8_t BYTE_BITS = 8; variable
154 bitIndex = i % BYTE_BITS; in BitConvert()
155 currentSource = *(sourceRow + i / BYTE_BITS); in BitConvert()