Home
last modified time | relevance | path

Searched refs:huffTable12 (Results 1 – 4 of 4) sorted by relevance

/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_SecureUncompression.cpp912 u16* huffTable12; // Huffman table for offset in SecureUncompressLH() local
924 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in SecureUncompressLH()
952 pSrc += HuffImportTree( huffTable12, pSrc, OFFSET_BITS, srcSize - ((u32)pSrc - (u32)srcp) ); in SecureUncompressLH()
957 if ( ! internal::LHVerifyTable( huffTable12, OFFSET_BITS ) ) in SecureUncompressLH()
1001 u16* nodep = huffTable12 + 1; in SecureUncompressLH()
Dcx_Uncompression.cpp506 u16* huffTable12; in UncompressLH() local
509 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in UncompressLH()
522 pSrc += HuffImportTree( huffTable12, pSrc, OFFSET_BITS ); in UncompressLH()
559 u16* nodep = huffTable12 + 1; in UncompressLH()
Dcx_StreamingUncompression.cpp881 context->huffTable12[ context->tableIdx++ ] = (u16)val; in ReadUncompLH()
886 context->huffTable12[ 0 ] = (u16)context->tableIdx; in ReadUncompLH()
898 if ( ! internal::LHVerifyTable( context->huffTable12, OFFSET_BITS ) ) in ReadUncompLH()
931 nodep = context->huffTable12 + 1; in ReadUncompLH()
/CTR-SDK-4.2.5/include/nn/cx/
Dcx_StreamingUncompression.h93 u16 huffTable12[ 1 << (5 + 1) ]; // member