Home
last modified time | relevance | path

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

/RvlSDK-3.2/build/libraries/cx/src/
DCXUncompression.c487 u16* huffTable12; in CXUncompressLH() local
490 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in CXUncompressLH()
503 pSrc += CXiHuffImportTree( huffTable12, pSrc, OFFSET_BITS ); in CXUncompressLH()
538 u16* nodep = huffTable12 + 1; in CXUncompressLH()
DCXSecureUncompression.c866 u16* huffTable12; // Huffman table for offset in CXSecureUncompressLH() local
879 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in CXSecureUncompressLH()
905 pSrc += CXiHuffImportTree( huffTable12, pSrc, OFFSET_BITS, srcSize - ((u32)pSrc - (u32)srcp) ); in CXSecureUncompressLH()
910 if ( ! CXiLHVerifyTable( huffTable12, OFFSET_BITS ) ) in CXSecureUncompressLH()
952 u16* nodep = huffTable12 + 1; in CXSecureUncompressLH()
DCXStreamingUncompression.c811 context->huffTable12[ context->tableIdx++ ] = (u16)val; in CXReadUncompLH()
823 if ( ! CXiLHVerifyTable( context->huffTable12, OFFSET_BITS ) ) in CXReadUncompLH()
855 nodep = context->huffTable12 + 1; in CXReadUncompLH()
/RvlSDK-3.2/include/revolution/cx/
DCXStreamingUncompression.h131 u16 huffTable12[ 1 << (5 + 1) ]; // Huffman encoding table: 128B member