Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Compression.cpp1200 u32 streamLength = 0; in HuffConvertData() local
1210 streamLength += table[ val ].PaDepth; in HuffConvertData()
1212 if ( dstSize + (streamLength / 8) >= maxSize ) in HuffConvertData()
1218 for ( ii = 0; ii < streamLength / 8; ii++ ) in HuffConvertData()
1220 dstp[ dstSize++ ] = (u8)(bitStream >> (streamLength - (ii + 1) * 8)); in HuffConvertData()
1222 streamLength %= 8; in HuffConvertData()
1237 streamLength += table[ srcTmp ].PaDepth; in HuffConvertData()
1238 if ( dstSize + (streamLength / 8) >= maxSize ) in HuffConvertData()
1243 for ( iii = 0; iii < streamLength / 8; iii++ ) in HuffConvertData()
1245 dstp[ dstSize++ ] = (u8)(bitStream >> (streamLength - (iii + 1) * 8)); in HuffConvertData()
[all …]