Searched refs:treeSize (Results 1 – 3 of 3) sorted by relevance
361 u32 treeSize = *treep; in CXiVerifyHuffmanTable_() local362 u8* treeEndp = (u8*)pTable + (treeSize + 1) * 2; in CXiVerifyHuffmanTable_()374 if ( treeSize >= 0x10 ) in CXiVerifyHuffmanTable_()390 if ( *treep == 0 && idx >= (treeSize * 2) ) in CXiVerifyHuffmanTable_()479 u32 treeSize = (u32)( (*treep + 1) << 1 ); in CXSecureUncompressHuffman() local492 if ( srcSize < 8 + treeSize ) in CXSecureUncompressHuffman()498 else if ( srcSize < 4 + treeSize ) in CXSecureUncompressHuffman()508 pSrc = (u32*)( treep + treeSize ); in CXSecureUncompressHuffman()778 u32 treeSize = *treep; in CXiLHVerifyTable() local779 u16* treeEndp = (u16*)pTable + treeSize; in CXiLHVerifyTable()[all …]
83 context->treeSize = -1; in CXInitUncompContextHuffman()487 if ( context->treeSize < 0 ) in CXReadUncompHuffman()489 context->treeSize = (s16)( ( *srcp + 1 ) * 2 - 1 ); in CXReadUncompHuffman()495 while ( context->treeSize > 0 ) in CXReadUncompHuffman()502 context->treeSize--; in CXReadUncompHuffman()504 if ( context->treeSize == 0 ) in CXReadUncompHuffman()
113 s16 treeSize; // Size of Huffman encoding table: 2B member