Home
last modified time | relevance | path

Searched refs:srcTmp (Results 1 – 4 of 4) sorted by relevance

/TwlSDK-5.1.0/build/libraries/mi/common/src/
Dmi_secureuncompress.c165 u8 srcTmp; in MI_SecureUncompressRL() local
175 srcTmp = *pSrc++; in MI_SecureUncompressRL()
182 *pDst++ = srcTmp; in MI_SecureUncompressRL()
588 u32 srcTmp = MI_HToLE32( *pSrc++ ); // Endian strategy in MI_SecureUncompressHuffman() local
597 u32 treeShift = (srcTmp >> 31) & 0x1; in MI_SecureUncompressHuffman()
626 srcTmp <<= 1; in MI_SecureUncompressHuffman()
Dmi_compress.c768 u8 srcTmp; in MI_CompressHuffman() local
963 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()
Dmi_uncomp_stream.c92 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()
/TwlSDK-5.1.0/include/nitro/mi/
Duncomp_stream.h63 u32 srcTmp; // Data being read 4B member