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

  /external/lz4/programs/
fullbench.c 300 static void* stateLZ4HC;
303 return LZ4_compressHC_withStateHC(stateLZ4HC, in, out, inSize);
308 return LZ4_compressHC_limitedOutput_withStateHC(stateLZ4HC, in, out, inSize, LZ4_compressBound(inSize));
436 stateLZ4HC = LZ4_createStreamHC();
fuzzer.c 292 void* stateLZ4HC = malloc(LZ4_sizeofStateHC());
368 ret = LZ4_compressHC_withStateHC(stateLZ4HC, block, compressedBuffer, blockSize);
486 ret = LZ4_compressHC_limitedOutput_withStateHC(stateLZ4HC, block, compressedBuffer, blockSize, HCcompressedSize);
670 free(stateLZ4HC);
    [all...]

Completed in 36 milliseconds