Home | History | Annotate | Download | only in programs

Lines Matching refs:cLevel

261         cLevel=0,
307 if ((argument[0]=='c') && (argument[1]=='0')) { cLevel=0; argument++; continue; } /* -c0 (fast compression) */
308 if ((argument[0]=='c') && (argument[1]=='1')) { cLevel=9; argument++; continue; } /* -c1 (high compression) */
309 if ((argument[0]=='h') && (argument[1]=='c')) { cLevel=9; argument++; continue; } /* -hc (high compression) */
316 cLevel = 0;
319 cLevel *= 10;
320 cLevel += *argument - '0';
438 if (bench) return BMK_benchFile(argv+filenamesStart, argc-filenamesStart, cLevel);
490 LZ4IO_compressFilename_Legacy(input_filename, output_filename, cLevel);
494 DEFAULT_COMPRESSOR(input_filename, output_filename, cLevel);