Searched refs:srcTmp (Results 1 – 4 of 4) sorted by relevance
165 u8 srcTmp; in MI_SecureUncompressRL() local175 srcTmp = *pSrc++; in MI_SecureUncompressRL()182 *pDst++ = srcTmp; in MI_SecureUncompressRL()588 u32 srcTmp = MI_HToLE32( *pSrc++ ); // Endian strategy in MI_SecureUncompressHuffman() local597 u32 treeShift = (srcTmp >> 31) & 0x1; in MI_SecureUncompressHuffman()626 srcTmp <<= 1; in MI_SecureUncompressHuffman()
768 u8 srcTmp; in MI_CompressHuffman() local963 srcTmp = (u8)( val >> 4 ); // Upper 4 bits in MI_CompressHuffman()967 srcTmp = (u8)( val & 0x0F ); // Lower 4 bits in MI_CompressHuffman()969 bitStream = (bitStream << HuffTable[srcTmp].PaDepth) | HuffTable[srcTmp].HuffCode; in MI_CompressHuffman()970 streamLength += HuffTable[srcTmp].PaDepth; in MI_CompressHuffman()
92 context->srcTmp = 0; in MI_InitUncompContextHuffman()632 … ldr r6, [r0, #MIUncompContextHuffman.srcTmp] // r6: srcTmp = context->srcTmp; in MI_ReadUncompHuffman()720 … str r6, [r0, #MIUncompContextHuffman.srcTmp] // r6: context->srcTmp = srcTmp; in MI_ReadUncompHuffman()
63 u32 srcTmp; // Data being read 4B member