Searched refs:LZ4_streamDecode_t (Results 1 – 9 of 9) sorted by relevance
/external/lz4/lib/ |
D | lz4.h | 275 typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* incomplete type (defined later) */ typedef 278 LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void); 279 LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream); 286 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, i… 305 LZ4LIB_API int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* sour… 306 LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* sour…
|
D | lz4.c | 1274 LZ4_streamDecode_t* LZ4_createStreamDecode(void) in LZ4_createStreamDecode() 1276 LZ4_streamDecode_t* lz4s = (LZ4_streamDecode_t*) ALLOCATOR(1, sizeof(LZ4_streamDecode_t)); in LZ4_createStreamDecode() 1280 int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream) in LZ4_freeStreamDecode() 1293 int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize) in LZ4_setStreamDecode() 1310 int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… in LZ4_decompress_safe_continue() 1336 int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… in LZ4_decompress_fast_continue()
|
/external/lz4/tests/ |
D | fasttest.c | 62 LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; in test_decompress() 63 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | fuzzer.c | 701 LZ4_streamDecode_t decodeState; in FUZ_unitTests() 852 LZ4_streamDecode_t decodeState; in FUZ_unitTests() 894 LZ4_streamDecode_t decodeState; in FUZ_unitTests()
|
/external/lz4/examples/ |
D | blockStreaming_ringBuffer.c | 89 LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; in test_decompress() 90 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | blockStreaming_doubleBuffer.c | 76 LZ4_streamDecode_t lz4StreamDecode_body; in test_decompress() 77 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | HCStreaming_ringBuffer.c | 93 LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; in test_decompress() 94 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | dictionaryRandomAccess.c | 107 LZ4_streamDecode_t lz4StreamDecode_body; in test_decompress() 108 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | blockStreaming_lineByLine.c | 92 LZ4_streamDecode_t* const lz4StreamDecode = LZ4_createStreamDecode(); in test_decompress()
|