Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c83 u32 CXCompressLZ(const u8 *srcp, u32 size, u8 *dstp, void *work) in CXCompressLZ() argument
98 *(u32 *)dstp = CXiConvertEndian_( size << 8 | CX_COMPRESSION_LZ ); // data header in CXCompressLZ()
99 dstp += 4; in CXCompressLZ()
107 LZCompFlagsp = dstp++; // Designation for storing flag series in CXCompressLZ()
130 *dstp++ = (u8)((lastLength - 3) << 4 | (lastOffset - 1) >> 8); in CXCompressLZ()
131 *dstp++ = (u8)((lastOffset - 1) & 0xff); in CXCompressLZ()
145 *dstp++ = *srcp++; in CXCompressLZ()
158 *dstp++ = 0; in CXCompressLZ()
361 u32 CXCompressRL(const u8 *srcp, u32 size, u8 *dstp) in CXCompressRL() argument
373 ASSERT( dstp != NULL ); in CXCompressRL()
[all …]
/RvlSDK-2.1/include/revolution/cx/
DCXCompression.h58 u32 CXCompressLZ( const u8 *srcp, u32 size, u8 *dstp, void* work );
74 u32 CXCompressRL( const u8 *srcp, u32 size, u8 *dstp );
95 u32 CXCompressHuffman( const u8 *srcp, u32 size, u8 *dstp, u8 huffBitSize, void *work );