Searched refs:huffTable12 (Results 1 – 4 of 4) sorted by relevance
487 u16* huffTable12; in CXUncompressLH() local490 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()
875 u16* huffTable12; // Huffman table for offset in CXSecureUncompressLH() local888 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in CXSecureUncompressLH()914 pSrc += CXiHuffImportTree( huffTable12, pSrc, OFFSET_BITS, srcSize - ((u32)pSrc - (u32)srcp) ); in CXSecureUncompressLH()919 if ( ! CXiLHVerifyTable( huffTable12, OFFSET_BITS ) ) in CXSecureUncompressLH()961 u16* nodep = huffTable12 + 1; in CXSecureUncompressLH()
822 context->huffTable12[ context->tableIdx++ ] = (u16)val; in CXReadUncompLH()826 context->huffTable12[ 0 ] = (u16)context->tableIdx; in CXReadUncompLH()837 if ( ! CXiLHVerifyTable( context->huffTable12, OFFSET_BITS ) ) in CXReadUncompLH()870 nodep = context->huffTable12 + 1; in CXReadUncompLH()
131 u16 huffTable12[ 1 << (5 + 1) ]; // Huffman encoding table: 128B member