Home
last modified time | relevance | path

Searched refs:destTmp (Results 1 – 3 of 3) sorted by relevance

/TwlSDK-5.1.0/include/nitro/mi/
Duncomp_stream.h31 u16 destTmp; // Data being written: 2B member
46 u16 destTmp; // Data being written: 2B member
64 u32 destTmp; // Data being decoded 4B member
/TwlSDK-5.1.0/build/libraries/mi/common/src/
Dmi_uncomp_stream.c43 context->destTmp = 0; in MI_InitUncompContextRL()
66 context->destTmp = 0; in MI_InitUncompContextLZ()
90 context->destTmp = 0; in MI_InitUncompContextHuffman()
208 … ldrh r7, [r0, #MIUncompContextRL.destTmp] // r7: destTmp = context->destTmp; in MI_ReadUncompRL16()
274 strh r7, [r0, #MIUncompContextRL.destTmp] // context->destTmp = destTmp; in MI_ReadUncompRL16()
456 … ldrh r9, [r0, #MIUncompContextLZ.destTmp] // r9: destTmp = context->destTmp; in MI_ReadUncompLZ16()
601 strh r9, [r0, #MIUncompContextLZ.destTmp] // context->destTmp = destTmp; in MI_ReadUncompLZ16()
633 … ldr r7, [r0, #MIUncompContextHuffman.destTmp] // r7: destTmp = context->destTmp; in MI_ReadUncompHuffman()
721 … str r7, [r0, #MIUncompContextHuffman.destTmp] // r7: context->destTmp = destTmp; in MI_ReadUncompHuffman()
Dmi_secureuncompress.c537 u32 destTmp = 0; in MI_SecureUncompressHuffman() local
603 destTmp >>= dataBit; in MI_SecureUncompressHuffman()
604 destTmp |= *treep << (32 - dataBit); in MI_SecureUncompressHuffman()
610 destTmp >>= (destTmpDataNum - destTmpCount) * dataBit; in MI_SecureUncompressHuffman()
617 *pDst++ = MI_HToLE32(destTmp); // Endian strategy in MI_SecureUncompressHuffman()