Lines Matching refs:pSrc
96 const u8 *pSrc = srcp; in MI_SecureUncompressRL() local
98 u8 compType = (u8)( MI_HToLE32( *(u32*)pSrc ) & 0xFF ); in MI_SecureUncompressRL()
99 u32 destCount = MI_HToLE32( *(u32*)pSrc ) >> 8; in MI_SecureUncompressRL()
115 pSrc += 4; in MI_SecureUncompressRL()
124 destCount = MI_HToLE32( *(u32*)pSrc ); in MI_SecureUncompressRL()
125 pSrc += 4; in MI_SecureUncompressRL()
136 u8 flags = *pSrc++; in MI_SecureUncompressRL()
160 *pDst++ = *pSrc++; in MI_SecureUncompressRL()
175 srcTmp = *pSrc++; in MI_SecureUncompressRL()
227 const u8* pSrc = srcp; in MI_SecureUncompressLZ() local
229 u8 compType = (u8)( MI_HToLE32( *(u32*)pSrc ) & 0xFF ); in MI_SecureUncompressLZ()
230 u32 destCount = MI_HToLE32( *(u32*)pSrc ) >> 8; in MI_SecureUncompressLZ()
232 BOOL exFormat = (*pSrc & 0x0F)? TRUE : FALSE; in MI_SecureUncompressLZ()
247 pSrc += 4; in MI_SecureUncompressLZ()
257 destCount = MI_HToLE32( *(u32*)pSrc ); in MI_SecureUncompressLZ()
258 pSrc += 4; in MI_SecureUncompressLZ()
271 u32 flags = *pSrc++; in MI_SecureUncompressLZ()
280 flags = *pSrc++; in MI_SecureUncompressLZ()
294 *pDst++ = *pSrc++; in MI_SecureUncompressLZ()
305 s32 length = (*pSrc >> 4); in MI_SecureUncompressLZ()
324 length = (*pSrc++ & 0x0F) << 12; in MI_SecureUncompressLZ()
325 length |= (*pSrc++) << 4; in MI_SecureUncompressLZ()
326 length |= (*pSrc >> 4); in MI_SecureUncompressLZ()
340 length = (*pSrc++ & 0x0F) << 4; in MI_SecureUncompressLZ()
341 length |= (*pSrc >> 4); in MI_SecureUncompressLZ()
360 offset = (*pSrc++ & 0x0f) << 8; in MI_SecureUncompressLZ()
361 offset = (offset | *pSrc++) + 1; in MI_SecureUncompressLZ()
530 const u32 *pSrc = srcp; in MI_SecureUncompressHuffman() local
532 u8 compType = (u8)( MI_HToLE32( *(u32*)pSrc ) & 0xFF ); in MI_SecureUncompressHuffman()
533 s32 destCount = (s32)( MI_HToLE32( *pSrc ) >> 8 ); in MI_SecureUncompressHuffman()
534 u8 *treep = (destCount != 0)? ((u8*)pSrc + 4) : ((u8*)pSrc + 8); in MI_SecureUncompressHuffman()
536 u32 dataBit = *(u8*)pSrc & 0x0FU; in MI_SecureUncompressHuffman()
558 destCount = (s32)( MI_HToLE32( *(pSrc + 1) ) ); in MI_SecureUncompressHuffman()
570 pSrc = (u32*)( treep + treeSize ); in MI_SecureUncompressHuffman()
571 srcCount -= ( (u32)pSrc - (u32)srcp ); in MI_SecureUncompressHuffman()
588 u32 srcTmp = MI_HToLE32( *pSrc++ ); // Endian strategy in MI_SecureUncompressHuffman()
713 const u8* pSrc = srcp; in MI_SecureUnfilterDiff() local
715 u32 bitSize = *pSrc & 0xFU; in MI_SecureUnfilterDiff()
716 u8 compType = (u8)( MI_HToLE32( *(u32*)pSrc ) & 0xFF ); in MI_SecureUnfilterDiff()
717 s32 destCount = (s32)( MI_HToLE32( *(u32*)pSrc ) >> 8 ); in MI_SecureUnfilterDiff()
738 pSrc += 4; in MI_SecureUnfilterDiff()
746 u8 tmp = *(pSrc++); in MI_SecureUnfilterDiff()
761 u16 tmp = MI_HToLE16( *(u16*)pSrc ); in MI_SecureUnfilterDiff()
762 pSrc += 2; in MI_SecureUnfilterDiff()