Home | History | Annotate | Download | only in programs

Lines Matching refs:compressionFunction

323     int (*compressionFunction)(const char* src, char* dst, int srcSize, int dstSize, int cLevel);
335 if (compressionlevel < 3) compressionFunction = LZ4IO_LZ4_compress; else compressionFunction = LZ4_compress_HC;
362 outSize = compressionFunction(in_buff, out_buff+4, (int)inSize, outBuffSize, compressionlevel);