| /CTR-SDK-4.2.5/include/nn/cx/ |
| D | cx_Compression.h | 40 u32 CompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, void *work, bool exFormat); 51 inline u32 CompressLZ(const u8 *srcp, u32 size, u8 *dstp, void *work) in CompressLZ() argument 53 return CompressLZImpl( srcp, size, dstp, work, false ); in CompressLZ() 65 inline u32 CompressLZEx(const u8 *srcp, u32 size, u8 *dstp, void* work) in CompressLZEx() argument 67 return CompressLZImpl( srcp, size, dstp, work, true ); in CompressLZEx() 95 u32 CompressHuffman( const u8 *srcp, u32 size, u8 *dstp, u8 huffBitSize, void *work );
|
| D | cx_SecureUncompression.h | 132 s32 SecureUncompressLH( const u8* srcp, u32 srcSize, u8* destp, void* work ); 143 s32 SecureUncompressLRC( const u8* srcp, u32 srcSize, u8* destp, void* work );
|
| D | cx_Uncompression.h | 192 void UncompressLH( const u8* srcp, u8* destp, void* work ); 205 void UncompressLRC( const u8* srcp, u8* destp, void* work );
|
| /CTR-SDK-4.2.5/sources/libraries/cx/ |
| D | cx_Uncompression.cpp | 482 UncompressLH( const u8* srcp, u8* dstp, void* work ) in UncompressLH() argument 486 NN_NULL_TASSERT_(work); in UncompressLH() 488 NN_CX_CHECK_ALIGN(work, sizeof(u16)); in UncompressLH() 508 huffTable9 = static_cast<u16*>(work); in UncompressLH() 509 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in UncompressLH() 667 RCInitInfo_( RCCompressionInfo* info, u8 bitSize, void* work ) in RCInitInfo_() argument 673 info->freq = (u32*)work; in RCInitInfo_() 674 info->low_cnt = (u32*)( (u32)work + tableSize * sizeof(u32) ); in RCInitInfo_() 834 UncompressLRC( const u8* srcp, u8* dstp, void* work ) in UncompressLRC() argument 838 NN_NULL_TASSERT_(work); in UncompressLRC() [all …]
|
| D | cx_SecureUncompression.cpp | 888 SecureUncompressLH( const u8* srcp, u32 srcSize, u8* dstp, void* work ) in SecureUncompressLH() argument 892 NN_NULL_TASSERT_(work); in SecureUncompressLH() 894 NN_CX_CHECK_ALIGN(work, sizeof(u16)); in SecureUncompressLH() 923 huffTable9 = static_cast<u16*>(work); in SecureUncompressLH() 924 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in SecureUncompressLH() 1128 RCInitInfo_( RCCompressionInfo* info, u8 bitSize, void* work ) in RCInitInfo_() argument 1134 info->freq = (u32*)work; in RCInitInfo_() 1135 info->low_cnt = (u32*)( (u32)work + tableSize * sizeof(u32) ); in RCInitInfo_() 1295 SecureUncompressLRC( const u8* srcp, u32 srcSize, u8* dstp, void* work ) in SecureUncompressLRC() argument 1299 NN_NULL_TASSERT_(work); in SecureUncompressLRC() [all …]
|
| D | cx_Compression.cpp | 42 void LZInitTable( LZCompressInfo * info, void *work ); 65 u32 CompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, void *work, bool exFormat) in CompressLZImpl() argument 78 NN_ASSERT( work != NULL ); in CompressLZImpl() 97 LZInitTable(&info, work); in CompressLZImpl() 286 void LZInitTable(LZCompressInfo * info, void *work) in LZInitTable() argument 290 info->LZOffsetTable = (s16*)work; in LZInitTable() 291 info->LZByteTable = (s16*)( (u32)work + 4096 * sizeof(s16) ); in LZInitTable() 292 info->LZEndTable = (s16*)( (u32)work + (4096 + 256) * sizeof(s16) ); in LZInitTable() 550 void HuffInitTable( HuffCompressionInfo* info, void* work, u16 dataNum ); 582 u32 CompressHuffman( const u8 *srcp, u32 size, u8 *dstp, u8 huffBitSize, void *work ) in CompressHuffman() argument [all …]
|