Lines Matching refs:streamLength
1200 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()
1247 streamLength %= 8; in HuffConvertData()
1252 if ( streamLength != 0 ) in HuffConvertData()
1259 dstp[ dstSize++ ] = (u8)( bitStream << (8 - streamLength) ); in HuffConvertData()