Lines Matching refs:streamLength
1147 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()
1193 streamLength %= 8; in HuffConvertData()
1198 if ( streamLength != 0 ) in HuffConvertData()
1205 dstp[ dstSize++ ] = (u8)( bitStream << (8 - streamLength) ); in HuffConvertData()