Searched refs:streamLength (Results 1 – 1 of 1) sorted by relevance
1147 u32 streamLength = 0; in HuffConvertData() local1156 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()[all …]