Searched refs:LZ4_stream_t (Results 1 - 2 of 2) sorted by relevance

/linux-master/include/linux/
H A Dlz4.h96 * LZ4_stream_t - information structure to track an LZ4 stream.
109 } LZ4_stream_t; typedef in typeref:union:__anon109
442 * LZ4_resetStream() - Init an allocated 'LZ4_stream_t' structure
443 * @LZ4_stream: pointer to the 'LZ4_stream_t' structure
445 * An LZ4_stream_t structure can be allocated once
447 * Use this function to init an allocated `LZ4_stream_t` structure
450 void LZ4_resetStream(LZ4_stream_t *LZ4_stream);
454 * @streamPtr: pointer to the LZ4_stream_t
465 int LZ4_loadDict(LZ4_stream_t *streamPtr, const char *dictionary,
470 * @streamPtr: pointer to the 'LZ4_stream_t' structur
[all...]
/linux-master/lib/lz4/
H A Dlz4_compress.c466 LZ4_stream_t_internal *ctx = &((LZ4_stream_t *)state)->internal_donotuse;
473 LZ4_resetStream((LZ4_stream_t *)state);
721 LZ4_stream_t *state,
770 void LZ4_resetStream(LZ4_stream_t *LZ4_stream)
772 memset(LZ4_stream, 0, sizeof(LZ4_stream_t));
775 int LZ4_loadDict(LZ4_stream_t *LZ4_dict,
836 int LZ4_saveDict(LZ4_stream_t *LZ4_dict, char *safeBuffer, int dictSize)
857 int LZ4_compress_fast_continue(LZ4_stream_t *LZ4_stream, const char *source,

Completed in 124 milliseconds