Home
last modified time | relevance | path

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

/DragonOS-0.1.5/kernel/src/common/
Dlz4.h264 typedef union LZ4_stream_u LZ4_stream_t; /* incomplete type (defined later) */ typedef
266 LZ4LIB_API LZ4_stream_t *LZ4_createStream(void);
267 LZ4LIB_API int LZ4_freeStream(LZ4_stream_t *streamPtr);
291 LZ4LIB_API void LZ4_resetStream_fast(LZ4_stream_t *streamPtr);
304 LZ4LIB_API int LZ4_loadDict(LZ4_stream_t *streamPtr, const char *dictionary, int dictSize);
329 …LZ4LIB_API int LZ4_compress_fast_continue(LZ4_stream_t *streamPtr, const char *src, char *dst, int…
338 LZ4LIB_API int LZ4_saveDict(LZ4_stream_t *streamPtr, char *safeBuffer, int maxDictSize);
488 …LZ4LIB_STATIC_API void LZ4_attach_dictionary(LZ4_stream_t *workingStream, const LZ4_stream_t *dict…
632 LZ4LIB_API LZ4_stream_t *LZ4_initStream(void *buffer, size_t size);
691 …LZ4LIB_API int LZ4_compress_continue(LZ4_stream_t *LZ4_streamPtr, const char *source, char *dest, …
[all …]
/DragonOS-0.1.5/kernel/src/libs/
Dlz4.c904 …int LZ4_compress_forceExtDict(LZ4_stream_t *LZ4_dict, const char *source, char *dest, int srcSize);
1671 …LZ4_stream_t_internal *const ctx = &LZ4_initStream(state, sizeof(LZ4_stream_t))->internal_donotuse; in LZ4_compress_fast_extState()
1714 LZ4_stream_t_internal *ctx = &((LZ4_stream_t *)state)->internal_donotuse; in LZ4_compress_fast_extState_fastReset()
1770 LZ4_stream_t *ctxPtr = ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly aligned */ in LZ4_compress_fast()
1774 LZ4_stream_t ctx; in LZ4_compress_fast()
1775 LZ4_stream_t *const ctxPtr = &ctx; in LZ4_compress_fast()
1793 static int LZ4_compress_destSize_extState(LZ4_stream_t *state, const char *src, char *dst, int *src… in LZ4_compress_destSize_extState()
1820LZ4_stream_t *ctx = (LZ4_stream_t *)ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly … in LZ4_compress_destSize()
1824 LZ4_stream_t ctxBody; in LZ4_compress_destSize()
1825 LZ4_stream_t *ctx = &ctxBody; in LZ4_compress_destSize()
[all …]