Home | History | Annotate | Download | only in lib

Lines Matching refs:LZ4_stream_t

757  * Use this function once, to init a newly allocated LZ4_stream_t structure
760 void LZ4_resetStream (LZ4_stream_t* LZ4_stream)
762 MEM_INIT(LZ4_stream, 0, sizeof(LZ4_stream_t));
765 LZ4_stream_t* LZ4_createStream(void)
767 LZ4_stream_t* lz4s = (LZ4_stream_t*)ALLOCATOR(8, LZ4_STREAMSIZE_U64);
773 int LZ4_freeStream (LZ4_stream_t* LZ4_stream)
780 int LZ4_loadDict (LZ4_stream_t* LZ4_dict, const char* dictionary, int dictSize)
883 int LZ4_compress_continue (LZ4_stream_t* LZ4_stream, const char* source, char* dest, int inputSize)
888 int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_stream, const char* source, char* dest, int inputSize, int maxOutputSize)
895 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int inputSize)
915 int LZ4_saveDict (LZ4_stream_t* LZ4_dict, char* safeBuffer, int dictSize)
1324 int dictSize = LZ4_saveDict((LZ4_stream_t*)ctx, (char*)ctx->bufferStart, 64 KB);