Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c271 BYTE* tmpBuff; /* internal buffer, for streaming */ member
624 LZ4F_free(cctxPtr->tmpBuff, cctxPtr->cmem); in LZ4F_freeCompressionContext()
734 LZ4F_free(cctxPtr->tmpBuff, cctxPtr->cmem); in LZ4F_compressBegin_usingCDict()
735 cctxPtr->tmpBuff = (BYTE*)LZ4F_calloc(requiredBuffSize, cctxPtr->cmem); in LZ4F_compressBegin_usingCDict()
736 RETURN_ERROR_IF(cctxPtr->tmpBuff == NULL, allocation_failed); in LZ4F_compressBegin_usingCDict()
739 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressBegin_usingCDict()
909 return LZ4_saveDict ((LZ4_stream_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB); in LZ4F_localSaveDict()
910 return LZ4_saveDictHC ((LZ4_streamHC_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB); in LZ4F_localSaveDict()
1014 …cctxPtr->tmpIn = cctxPtr->tmpBuff; /* src is stable : dictionary remains in src across invocation… in LZ4F_compressUpdateImpl()
1018 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdateImpl()
[all …]