HomeSort by relevance Sort by last modified time
    Searched defs:LZ4_stream (Results 1 - 2 of 2) sorted by null

  /external/lz4/tests/
fullbench.c 160 static LZ4_stream_t LZ4_stream;
163 LZ4_resetStream(&LZ4_stream);
168 LZ4_resetStream(&LZ4_stream);
174 return LZ4_saveDict(&LZ4_stream, out, inSize);
209 return LZ4_compress_fast_extState(&LZ4_stream, in, out, inSize, LZ4_compressBound(inSize), 0);
214 return LZ4_compress_fast_continue(&LZ4_stream, in, out, inSize, LZ4_compressBound(inSize), 0);
219 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_stream, const char* source, char* dest, int inputSize);
223 return LZ4_compress_forceExtDict(&LZ4_stream, in, out, inSize);
443 LZ4_loadDict(&LZ4_stream, chunkP[0].origBuffer, chunkP[0].origSize);
fuzzer.c 507 { LZ4_stream_t LZ4_stream;
508 LZ4_resetStream(&LZ4_stream);
509 LZ4_compress_fast_continue (&LZ4_stream, dict, compressedBuffer, dictSize, (int)compressedBufferSize, 1); /* Just to fill hash tables */
510 blockContinueCompressedSize = LZ4_compress_fast_continue (&LZ4_stream, block, compressedBuffer, blockSize, (int)compressedBufferSize, 1);
    [all...]

Completed in 172 milliseconds