Home
last modified time | relevance | path

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

/RvlSDK-3.2.2/build/libraries/cx/src/
DCXCompression.c583 static void HuffAddParentDepthToTable( HuffData *table, u16 leftNo, u16 rightNo );
777 s32 leftNo, rightNo; // Node's numbers at time of binary tree's creation in HuffConstructTree() local
782 leftNo = -1; in HuffConstructTree()
796 if ( leftNo < 0 ) in HuffConstructTree()
798 leftNo = i; in HuffConstructTree()
800 else if ( table[i].Freq < table[ leftNo ].Freq ) in HuffConstructTree()
802 leftNo = i; in HuffConstructTree()
811 ( i == leftNo ) ) in HuffConstructTree()
832 table[ tableTop ].Freq = table[ leftNo ].Freq; in HuffConstructTree()
833 table[ tableTop ].ChNo[0] = (s16)leftNo; in HuffConstructTree()
[all …]