Lines Matching refs:rootNo
522 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()
865 static void HuffMakeHuffTree( HuffCompressionInfo* info, u16 rootNo ) in HuffMakeHuffTree() argument
878 info->huffTreeCtrl[0].rightNodeNo = rootNo; in HuffMakeHuffTree()