Home
last modified time | relevance | path

Searched refs:exFormat (Results 1 – 5 of 5) sorted by relevance

/TwlSDK-5.1.0/include/nitro/mi/
Dcompress.h45 u32 MI_CompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, BOOL exFormat);
46 u32 MI_CompressLZFastImpl(const u8 *srcp, u32 size, u8 *dstp, u8 *work, BOOL exFormat);
Duncomp_stream.h51 u8 exFormat; // LZ77 compression extension option: 1B member
/TwlSDK-5.1.0/build/libraries/mi/common/src/
Dmi_compress.c41 u32 MI_CompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, BOOL exFormat) in MI_CompressLZImpl() argument
52 const u32 MAX_LENGTH = (exFormat)? (0xFFFF + 0xFF + 0xF + 3U) : (0xF + 3U); in MI_CompressLZImpl()
56 *(u32 *)dstp = size << 8 | MI_COMPRESSION_LZ | (exFormat? 1 : 0); // Data header in MI_CompressLZImpl()
90 if ( exFormat ) in MI_CompressLZImpl()
361 u32 MI_CompressLZFastImpl(const u8 *srcp, u32 size, u8 *dstp, u8 *work, BOOL exFormat) in MI_CompressLZFastImpl() argument
371 const u32 MAX_LENGTH = (exFormat)? (0xFFFF + 0xFF + 0xF + 3U) : (0xF + 3U); in MI_CompressLZFastImpl()
376 *(u32 *)dstp = size << 8 | MI_COMPRESSION_LZ | (exFormat? 1 : 0); // Data header in MI_CompressLZFastImpl()
409 if ( exFormat ) in MI_CompressLZFastImpl()
Dmi_uncomp_stream.c68 context->exFormat = (u8)( (header->compParam == 0)? 0U : 1U ); in MI_InitUncompContextLZ()
305 … ldrb r11, [r0, #MIUncompContextLZ.exFormat] // r11: exFormat = context->exFormat; in MI_ReadUncompLZ8()
424 strb r11, [r0, #MIUncompContextLZ.exFormat] // context->exFormat = exFormat in MI_ReadUncompLZ8()
458 … ldrb r14, [r0, #MIUncompContextLZ.exFormat] // r14: exFormat = context->exFormat; in MI_ReadUncompLZ16()
603 strb r14, [r0, #MIUncompContextLZ.exFormat] // context->exFormat = exFormat; in MI_ReadUncompLZ16()
Dmi_secureuncompress.c232 BOOL exFormat = (*pSrc & 0x0F)? TRUE : FALSE; in MI_SecureUncompressLZ() local
308 if ( ! exFormat ) in MI_SecureUncompressLZ()