Lines Matching refs:tmpBuff
175 BYTE* tmpBuff; member
398 FREEMEM(cctxPtr->tmpBuff); in LZ4F_freeCompressionContext()
448 FREEMEM(cctxPtr->tmpBuff); in LZ4F_compressBegin()
449 cctxPtr->tmpBuff = (BYTE*)ALLOCATOR(requiredBuffSize); in LZ4F_compressBegin()
450 if (cctxPtr->tmpBuff == NULL) return err0r(LZ4F_ERROR_allocation_failed); in LZ4F_compressBegin()
452 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressBegin()
547 return LZ4_saveDict ((LZ4_stream_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB); in LZ4F_localSaveDict()
548 return LZ4_saveDictHC ((LZ4_streamHC_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB); in LZ4F_localSaveDict()
618 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressUpdate()
622 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
627 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ… in LZ4F_compressUpdate()
631 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
678 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) { /* … in LZ4F_flush()
680 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_flush()