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