Searched refs:LZ4_streamDecode_t (Results 1 – 7 of 7) sorted by relevance
/external/lz4/lib/ |
D | lz4.h | 242 typedef struct { unsigned long long table[LZ4_STREAMDECODESIZE_U64]; } LZ4_streamDecode_t; typedef 253 LZ4_streamDecode_t* LZ4_createStreamDecode(void); 254 int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream); 262 int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize… 271 int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… 272 int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d…
|
D | lz4.c | 1152 LZ4_streamDecode_t* LZ4_createStreamDecode(void) in LZ4_createStreamDecode() 1154 … LZ4_streamDecode_t* lz4s = (LZ4_streamDecode_t*) ALLOCATOR(sizeof(U64), LZ4_STREAMDECODESIZE_U64); in LZ4_createStreamDecode() 1158 int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream) in LZ4_freeStreamDecode() 1171 int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize) in LZ4_setStreamDecode() 1188 int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… in LZ4_decompress_safe_continue() 1217 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 | 88 LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; in test_decompress() 89 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | blockStreaming_doubleBuffer.c | 71 LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; in test_decompress() 72 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | HCStreaming_ringBuffer.c | 94 LZ4_streamDecode_t lz4StreamDecode_body = { 0 }; in test_decompress() 95 LZ4_streamDecode_t* lz4StreamDecode = &lz4StreamDecode_body; in test_decompress()
|
D | blockStreaming_lineByLine.c | 88 LZ4_streamDecode_t* const lz4StreamDecode = LZ4_createStreamDecode(); in test_decompress()
|
/external/lz4/programs/ |
D | fuzzer.c | 729 LZ4_streamDecode_t decodeState; in FUZ_unitTests() 892 LZ4_streamDecode_t decodeState; in FUZ_unitTests() 936 LZ4_streamDecode_t decodeState; in FUZ_unitTests()
|