Searched refs:LZ4_streamDecode_t (Results 1 – 2 of 2) sorted by relevance
/lvgl-latest/src/libs/lz4/ |
D | lz4.h | 423 typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* tracking context */ typedef 431 LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void); 432 LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream); 443 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, i… 498 LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, 856 LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src,…
|
D | lz4.c | 2498 LZ4_streamDecode_t* LZ4_createStreamDecode(void) in LZ4_createStreamDecode() 2500 LZ4_STATIC_ASSERT(sizeof(LZ4_streamDecode_t) >= sizeof(LZ4_streamDecode_t_internal)); in LZ4_createStreamDecode() 2501 return (LZ4_streamDecode_t*) ALLOC_AND_ZERO(sizeof(LZ4_streamDecode_t)); in LZ4_createStreamDecode() 2504 int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream) in LZ4_freeStreamDecode() 2518 int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize) in LZ4_setStreamDecode() 2560 int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… in LZ4_decompress_safe_continue() 2600 LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, in LZ4_decompress_fast_continue()
|