Searched refs:LZ4_streamDecode_t (Results 1 – 9 of 9) sorted by relevance
/external/lz4/lib/ |
D | lz4.h | 330 typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* tracking context */ typedef 336 LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void); 337 LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream); 346 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, i… 387 LZ4LIB_API int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src,… 746 LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src,…
|
D | lz4.c | 2168 LZ4_streamDecode_t* LZ4_createStreamDecode(void) in LZ4_createStreamDecode() 2170 LZ4_streamDecode_t* lz4s = (LZ4_streamDecode_t*) ALLOC_AND_ZERO(sizeof(LZ4_streamDecode_t)); in LZ4_createStreamDecode() 2175 int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream) in LZ4_freeStreamDecode() 2188 int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize) in LZ4_setStreamDecode() 2225 int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… in LZ4_decompress_safe_continue() 2265 int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… in LZ4_decompress_fast_continue()
|
/external/lz4/examples/ |
D | blockStreaming_ringBuffer.c | 86 LZ4_streamDecode_t lz4StreamDecode_body = { { 0 } }; in test_decompress() 87 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 | 96 LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; in test_decompress() 97 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()
|
/external/lz4/ossfuzz/ |
D | round_trip_stream_fuzzer.c | 33 LZ4_streamDecode_t* dstream;
|
/external/lz4/tests/ |
D | fuzzer.c | 1128 LZ4_streamDecode_t decodeStateSafe, decodeStateFast; in FUZ_unitTests() 1333 LZ4_streamDecode_t decodeStateSafe, decodeStateFast; in FUZ_unitTests() 1394 LZ4_streamDecode_t decodeStateSafe, decodeStateFast; in FUZ_unitTests()
|