Home | History | Annotate | Download | only in lib

Lines Matching refs:LZ4_stream_t

178  * LZ4_stream_t
184 typedef struct { long long table[LZ4_STREAMSIZE_U64]; } LZ4_stream_t;
188 * Use this function to init an allocated LZ4_stream_t structure
190 void LZ4_resetStream (LZ4_stream_t* LZ4_streamPtr);
193 * LZ4_createStream will allocate and initialize an LZ4_stream_t structure
196 * They are more future proof, in case of a change of LZ4_stream_t size.
198 LZ4_stream_t* LZ4_createStream(void);
199 int LZ4_freeStream (LZ4_stream_t* LZ4_streamPtr);
208 int LZ4_loadDict (LZ4_stream_t* LZ4_streamPtr, const char* dictionary, int dictSize);
215 int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
222 int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize);
233 int LZ4_saveDict (LZ4_stream_t* LZ4_streamPtr, char* safeBuffer, int dictSize);