Home
last modified time | relevance | path

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

/ohos5.0/drivers/hdf_core/framework/utils/src/hcs_parser/
H A Dhcs_blob_if.c114 …rootLen += (int32_t)HcsByteCodeToUint32(blob + HCS_PREFIX_LENGTH + HCS_STRING_LENGTH(blob + HCS_PR… in HcsGetNodeLength()
121 … *value = g_byteAlign ? (uint8_t)HcsByteCodeToUint32(realValue) : HcsByteCodeToUint8(realValue); in HcsSwapToUint8()
132 … *value = g_byteAlign ? (uint16_t)HcsByteCodeToUint32(realValue) : HcsByteCodeToUint16(realValue); in HcsSwapToUint16()
147 *value = HcsByteCodeToUint32(realValue); in HcsSwapToUint32()
/ohos5.0/drivers/hdf_core/framework/utils/include/
H A Dhcs_blob_if.h58 static inline uint32_t HcsByteCodeToUint32(const char *start) in HcsByteCodeToUint32() function
70 return HcsIsByteAlign() ? HcsByteCodeToUint32(start) : HcsByteCodeToUint8(start); in HcsGetPrefix()