Home
last modified time | relevance | path

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

/RvlSDK-3.2.2/build/libraries/cx/src/
DCXCompression.c578 static void HuffInitTable( HuffCompressionInfo* info, void* work, u16 dataNum );
580 static u16 HuffConstructTree( HuffData* table, u32 dataNum );
697 static void HuffInitTable( HuffCompressionInfo* info, void* work, u16 dataNum ) in HuffInitTable() argument
710 for ( i = 0; i < dataNum * 2U; i++ ) in HuffInitTable()
774 static u16 HuffConstructTree( HuffData *table, u32 dataNum ) in HuffConstructTree() argument
778 u16 tableTop = (u16)dataNum; // The table top number at time of table's creation in HuffConstructTree()
830 if ( tableTop == dataNum ) in HuffConstructTree()
845 nodeNum = (u16)( (rootNo - dataNum + 1) * 2 + 1 ); in HuffConstructTree()