Searched refs:LZ4_streamDecode_t (Results 1 – 11 of 11) sorted by relevance
/third_party/lz4/lib/ |
D | lz4.h | 410 typedef union LZ4_streamDecode_u LZ4_streamDecode_t; /* tracking context */ typedef 418 LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void); 419 LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream); 430 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, i… 472 LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, 824 LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src,…
|
D | lz4.c | 2462 LZ4_streamDecode_t* LZ4_createStreamDecode(void) in LZ4_createStreamDecode() 2464 LZ4_STATIC_ASSERT(sizeof(LZ4_streamDecode_t) >= sizeof(LZ4_streamDecode_t_internal)); in LZ4_createStreamDecode() 2465 return (LZ4_streamDecode_t*) ALLOC_AND_ZERO(sizeof(LZ4_streamDecode_t)); in LZ4_createStreamDecode() 2468 int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream) in LZ4_freeStreamDecode() 2482 int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize) in LZ4_setStreamDecode() 2524 int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* d… in LZ4_decompress_safe_continue() 2564 LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, in LZ4_decompress_fast_continue()
|
/third_party/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()
|
/third_party/lz4/tests/ |
D | abiTest.c | 64 LZ4_streamDecode_t LZ4_dState;
|
D | fuzzer.c | 1237 LZ4_streamDecode_t decodeStateSafe, decodeStateFast; in FUZ_unitTests() 1484 LZ4_streamDecode_t decodeStateSafe, decodeStateFast; in FUZ_unitTests() 1547 LZ4_streamDecode_t decodeStateSafe, decodeStateFast; in FUZ_unitTests()
|
/third_party/lz4/ossfuzz/ |
D | round_trip_stream_fuzzer.c | 33 LZ4_streamDecode_t* dstream;
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 58456 } LZ4_streamDecode_t; typedef
|