Home
last modified time | relevance | path

Searched refs:dataBit (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-3.1.4/build/libraries/cx/src/
DCXSecureUncompression.c474 u32 dataBit = *(u8*)pSrc & 0x0FU; in CXSecureUncompressHuffman() local
477 u32 destTmpDataNum = 4 + ( dataBit & 0x7 ); in CXSecureUncompressHuffman()
485 if ( (dataBit != 4) && (dataBit != 8) ) in CXSecureUncompressHuffman()
503 if ( ! CXiVerifyHuffmanTable_(treep, (u8)dataBit) ) in CXSecureUncompressHuffman()
536 destTmp >>= dataBit; in CXSecureUncompressHuffman()
537 destTmp |= *treep << (32 - dataBit); in CXSecureUncompressHuffman()
541 if ( destCount <= (destTmpCount * dataBit) / 8 ) in CXSecureUncompressHuffman()
543 destTmp >>= (destTmpDataNum - destTmpCount) * dataBit; in CXSecureUncompressHuffman()
DCXUncompression.c320 u32 dataBit = *(u8*)pSrc & 0x0FU; in CXUncompressHuffman() local
323 u32 destTmpDataNum = 4 + ( dataBit & 0x7 ); in CXUncompressHuffman()
345 destTmp >>= dataBit; in CXUncompressHuffman()
346 destTmp |= *treep << (32 - dataBit); in CXUncompressHuffman()