Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c1147 u32 streamLength = 0; in HuffConvertData() local
1156 streamLength += table[ srcp[i] ].PaDepth; in HuffConvertData()
1158 if ( dstSize + (streamLength / 8) >= maxSize ) in HuffConvertData()
1164 for ( ii = 0; ii < streamLength / 8; ii++ ) in HuffConvertData()
1166 dstp[ dstSize++ ] = (u8)(bitStream >> (streamLength - (ii + 1) * 8)); in HuffConvertData()
1168 streamLength %= 8; in HuffConvertData()
1183 streamLength += table[ srcTmp ].PaDepth; in HuffConvertData()
1184 if ( dstSize + (streamLength / 8) >= maxSize ) in HuffConvertData()
1189 for ( iii = 0; iii < streamLength / 8; iii++ ) in HuffConvertData()
1191 dstp[ dstSize++ ] = (u8)(bitStream >> (streamLength - (iii + 1) * 8)); in HuffConvertData()
[all …]