HomeSort by relevance Sort by last modified time
    Searched refs:LZ4_stream_t (Results 1 - 8 of 8) sorted by null

  /external/lz4/lib/
lz4.h 178 * LZ4_stream_t
184 typedef struct { long long table[LZ4_STREAMSIZE_U64]; } LZ4_stream_t;
188 * Use this function to init an allocated LZ4_stream_t structure
190 void LZ4_resetStream (LZ4_stream_t* LZ4_streamPtr);
193 * LZ4_createStream will allocate and initialize an LZ4_stream_t structure
196 * They are more future proof, in case of a change of LZ4_stream_t size.
198 LZ4_stream_t* LZ4_createStream(void);
199 int LZ4_freeStream (LZ4_stream_t* LZ4_streamPtr);
208 int LZ4_loadDict (LZ4_stream_t* LZ4_streamPtr, const char* dictionary, int dictSize);
215 int LZ4_compress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize)
    [all...]
lz4.c 757 * Use this function once, to init a newly allocated LZ4_stream_t structure
760 void LZ4_resetStream (LZ4_stream_t* LZ4_stream)
762 MEM_INIT(LZ4_stream, 0, sizeof(LZ4_stream_t));
765 LZ4_stream_t* LZ4_createStream(void)
767 LZ4_stream_t* lz4s = (LZ4_stream_t*)ALLOCATOR(8, LZ4_STREAMSIZE_U64);
773 int LZ4_freeStream (LZ4_stream_t* LZ4_stream)
780 int LZ4_loadDict (LZ4_stream_t* LZ4_dict, const char* dictionary, int dictSize)
883 int LZ4_compress_continue (LZ4_stream_t* LZ4_stream, const char* source, char* dest, int inputSize)
888 int LZ4_compress_limitedOutput_continue (LZ4_stream_t* LZ4_stream, const char* source, char* dest, int inputSize, int maxOutputSize
    [all...]
lz4frame.c 127 U32 lz4CtxLevel; /* 0: unallocated; 1: LZ4_stream_t; 3: LZ4_streamHC_t */
409 LZ4_resetStream((LZ4_stream_t*)(cctxPtr->lz4CtxPtr));
481 return LZ4_compress_limitedOutput_continue((LZ4_stream_t*)ctx, src, dst, srcSize, dstSize);
504 return LZ4_saveDict ((LZ4_stream_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB);
    [all...]
  /external/lz4/examples/
blockStreaming_doubleBuffer.c 38 LZ4_stream_t lz4Stream_body = { 0 };
39 LZ4_stream_t* lz4Stream = &lz4Stream_body;
blockStreaming_ringBuffer.c 53 LZ4_stream_t lz4Stream_body = { 0 };
54 LZ4_stream_t* lz4Stream = &lz4Stream_body;
blockStreaming_lineByLine.c 40 LZ4_stream_t* const lz4Stream = LZ4_createStream();
  /external/lz4/programs/
fullbench.c 273 static LZ4_stream_t* ctx;
285 LZ4_stream_t LZ4_dict;
289 memset(&LZ4_dict, 0, sizeof(LZ4_stream_t));
293 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int inputSize);
fuzzer.c 294 LZ4_stream_t LZ4dict;
521 LZ4_compress_continue ((LZ4_stream_t*)LZ4continue, dict, compressedBuffer, dictSize); // Just to fill hash tables
522 blockContinueCompressedSize = LZ4_compress_continue ((LZ4_stream_t*)LZ4continue, block, compressedBuffer, blockSize);
703 LZ4_stream_t* statePtr;
704 LZ4_stream_t streamingState;
    [all...]

Completed in 65 milliseconds