Home
last modified time | relevance | path

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

/RvlSDK-3.3/build/libraries/cx/src/
DCXCompression.c587 static void HuffMakeHuffTree ( HuffCompressionInfo* info, u16 rootNo );
612 u16 rootNo; // Binary tree's root number in CXCompressHuffman() local
631 rootNo = HuffConstructTree( info.huffTable, huffDataNum ); in CXCompressHuffman()
634 HuffMakeHuffTree( &info, rootNo ); in CXCompressHuffman()
779 u16 rootNo; // Binary tree's root number in HuffConstructTree() local
844 rootNo = tableTop; in HuffConstructTree()
845 nodeNum = (u16)( (rootNo - dataNum + 1) * 2 + 1 ); in HuffConstructTree()
873 …HuffAddCodeToTable( table, rootNo, 0x00 ); // The Huffman code is the code with HuffCode's … in HuffConstructTree()
876 HuffAddCountHWordToTable( table, rootNo ); in HuffConstructTree()
878 return rootNo; in HuffConstructTree()
[all …]