Searched refs:streamLength (Results 1 – 1 of 1) sorted by relevance
1224 u32 streamLength = 0; in HuffConvertData() local1234 streamLength += table[ val ].PaDepth; in HuffConvertData()1236 if ( dstSize + (streamLength / 8) >= maxSize ) in HuffConvertData()1242 for ( ii = 0; ii < streamLength / 8; ii++ ) in HuffConvertData()1244 dstp[ dstSize++ ] = (u8)(bitStream >> (streamLength - (ii + 1) * 8)); in HuffConvertData()1246 streamLength %= 8; in HuffConvertData()1261 streamLength += table[ srcTmp ].PaDepth; in HuffConvertData()1262 if ( dstSize + (streamLength / 8) >= maxSize ) in HuffConvertData()1267 for ( iii = 0; iii < streamLength / 8; iii++ ) in HuffConvertData()1269 dstp[ dstSize++ ] = (u8)(bitStream >> (streamLength - (iii + 1) * 8)); in HuffConvertData()[all …]