Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c522 static void HuffMakeHuffTree ( HuffCompressionInfo* info, u16 rootNo );
547 u16 rootNo; // Binary tree's root No. in CXCompressHuffman() local
565 rootNo = HuffConstructTree( info.huffTable, huffDataNum ); in CXCompressHuffman()
568 HuffMakeHuffTree( &info, rootNo ); in CXCompressHuffman()
702 u16 rootNo; // Binary tree's root No. in HuffConstructTree() local
767 rootNo = tableTop; in HuffConstructTree()
768 nodeNum = (u16)( (rootNo - dataNum + 1) * 2 + 1 ); in HuffConstructTree()
796 …HuffAddCodeToTable( table, rootNo, 0x00 ); // The Huffman code is the code with HuffCode's … in HuffConstructTree()
799 HuffAddCountHWordToTable( table, rootNo ); in HuffConstructTree()
801 return rootNo; in HuffConstructTree()
[all …]