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

  /external/lz4/programs/
fullbench.c 262 static void* stateLZ4;
265 return LZ4_compress_withState(stateLZ4, in, out, inSize);
270 return LZ4_compress_limitedOutput_withState(stateLZ4, in, out, inSize, LZ4_compressBound(inSize));
435 stateLZ4 = LZ4_createStream();
fuzzer.c 291 void* stateLZ4 = malloc(LZ4_sizeofState());
373 ret = LZ4_compress_withState(stateLZ4, block, compressedBuffer, blockSize);
476 ret = LZ4_compress_limitedOutput_withState(stateLZ4, block, compressedBuffer, blockSize, compressedSize);
669 free(stateLZ4);
    [all...]

Completed in 202 milliseconds