Lines Matching refs:tmpBuff
122 BYTE* tmpBuff; member
349 FREEMEM(cctxPtr->tmpBuff); in LZ4F_freeCompressionContext()
401 FREEMEM(cctxPtr->tmpBuff); in LZ4F_compressBegin()
402 cctxPtr->tmpBuff = (BYTE*)ALLOCATOR(requiredBuffSize); in LZ4F_compressBegin()
403 if (cctxPtr->tmpBuff == NULL) return (size_t)-ERROR_allocation_failed; in LZ4F_compressBegin()
405 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressBegin()
504 return LZ4_saveDict ((LZ4_stream_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB); in LZ4F_localSaveDict()
505 return LZ4_saveDictHC ((LZ4_streamHC_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB); in LZ4F_localSaveDict()
586 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressUpdate()
592 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
597 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily bl… in LZ4F_compressUpdate()
601 cctxPtr->tmpIn = cctxPtr->tmpBuff + 64 KB; in LZ4F_compressUpdate()
652 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) /* n… in LZ4F_flush()
655 cctxPtr->tmpIn = cctxPtr->tmpBuff + 64 KB; in LZ4F_flush()