Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c513 static void HuffInitTable( HuffCompressionInfo* info, void* work, u16 dataNum );
515 static u16 HuffConstructTree( HuffData* table, u32 dataNum );
620 static void HuffInitTable( HuffCompressionInfo* info, void* work, u16 dataNum ) in HuffInitTable() argument
633 for ( i = 0; i < dataNum * 2U; i++ ) in HuffInitTable()
697 static u16 HuffConstructTree( HuffData *table, u32 dataNum ) in HuffConstructTree() argument
701 u16 tableTop = (u16)dataNum; // When creating table, the table top No. in HuffConstructTree()
753 if ( tableTop == dataNum ) in HuffConstructTree()
768 nodeNum = (u16)( (rootNo - dataNum + 1) * 2 + 1 ); in HuffConstructTree()