Home
last modified time | relevance | path

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

/RvlSDK-3.2/build/libraries/cx/src/
DCXUncompression.c486 u16* huffTable9; in CXUncompressLH() local
489 huffTable9 = work; in CXUncompressLH()
502 pSrc += CXiHuffImportTree( huffTable9, pSrc, LENGTH_BITS ); in CXUncompressLH()
509 u16* nodep = huffTable9 + 1; in CXUncompressLH()
DCXSecureUncompression.c865 u16* huffTable9; // Huffman table for length in CXSecureUncompressLH() local
878 huffTable9 = work; in CXSecureUncompressLH()
896 pSrc += CXiHuffImportTree( huffTable9, pSrc, LENGTH_BITS, srcSize - ((u32)pSrc - (u32)srcp) ); in CXSecureUncompressLH()
901 if ( ! CXiLHVerifyTable( huffTable9, LENGTH_BITS ) ) in CXSecureUncompressLH()
919 u16* nodep = huffTable9 + 1; in CXSecureUncompressLH()
DCXStreamingUncompression.c663 context->nodep = context->huffTable9 + 1; in CXInitUncompContextLH()
772 context->huffTable9[ context->tableIdx++ ] = (u16)val; in CXReadUncompLH()
784 if ( ! CXiLHVerifyTable( context->huffTable9, LENGTH_BITS ) ) in CXReadUncompLH()
871 nodep = context->huffTable9 + 1; in CXReadUncompLH()
955 nodep = context->huffTable9 + 1; in CXReadUncompLH()
/RvlSDK-3.2/include/revolution/cx/
DCXStreamingUncompression.h130 u16 huffTable9 [ 1 << (9 + 1) ]; // Huffman encoding table: 2048B member