Searched refs:exFormat (Results 1 – 6 of 6) sorted by relevance
40 u32 CompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, void *work, bool exFormat);
58 u8 exFormat; // member
65 u32 CompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, void *work, bool exFormat) in CompressLZImpl() argument75 const u32 MAX_LENGTH = (exFormat)? (0xFFFF + 0xFF + 0xF + 3U) : (0xF + 3U); in CompressLZImpl()83 …*(u32 *)dstp = internal::ConvertEndian( size << 8 | COMPRESSION_LZ | (exFormat? 1 : 0) ); // Data… in CompressLZImpl()90 … *(u32 *)dstp = internal::ConvertEndian( COMPRESSION_LZ | (exFormat? 1U : 0U) ); // Data header in CompressLZImpl()126 if ( exFormat ) in CompressLZImpl()
94 context->exFormat = 0; in InitUncompContextLZ()332 context->exFormat = (u8)( *srcp & 0x0F ); in ReadUncompLZ()333 if ( (context->exFormat != 0x0) && (context->exFormat != 0x1) ) in ReadUncompLZ()369 if ( ! context->exFormat ) in ReadUncompLZ()
202 bool exFormat = (*pSrc & 0x0F)? true : false; in UncompressLZ() local227 if ( ! exFormat ) in UncompressLZ()
231 bool exFormat = (*pSrc & 0x0F)? true : false; in SecureUncompressLZ() local286 if ( ! exFormat ) in SecureUncompressLZ()