Lines Matching refs:streamLength
1224 u32 streamLength = 0; in HuffConvertData() local
1234 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()
1271 streamLength %= 8; in HuffConvertData()
1276 if ( streamLength != 0 ) in HuffConvertData()
1283 dstp[ dstSize++ ] = (u8)( bitStream << (8 - streamLength) ); in HuffConvertData()