Home | History | Annotate | Download | only in lib

Lines Matching refs:LZ4_streamDecode_t

242 typedef struct { unsigned long long table[LZ4_STREAMDECODESIZE_U64]; } LZ4_streamDecode_t;
244 * LZ4_streamDecode_t
249 * They are more future proof, in case of a change of LZ4_streamDecode_t size in the future.
250 * LZ4_createStreamDecode will allocate and initialize an LZ4_streamDecode_t structure
253 LZ4_streamDecode_t* LZ4_createStreamDecode(void);
254 int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream);
262 int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize);
271 int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* dest, int compressedSize, int maxDecompressedSize);
272 int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* dest, int originalSize);
280 They are stand-alone and don't use nor update an LZ4_streamDecode_t structure.