Lines Matching refs:params
174 CommandLine params = new CommandLine();
175 if (!params.Parse(args))
181 if (params.Command == CommandLine.kBenchmak)
184 if (params.DictionarySizeIsDefined)
185 dictionary = params.DictionarySize;
186 if (params.MatchFinder > 1)
188 SevenZip.LzmaBench.LzmaBenchmark(params.NumBenchmarkPasses, dictionary);
190 else if (params.Command == CommandLine.kEncode || params.Command == CommandLine.kDecode)
192 java.io.File inFile = new java.io.File(params.InFile);
193 java.io.File outFile = new java.io.File(params.OutFile);
199 if (params.Eos)
201 if (params.Command == CommandLine.kEncode)
204 if (!encoder.SetAlgorithm(params.Algorithm))
206 if (!encoder.SetDictionarySize(params.DictionarySize))
208 if (!encoder.SetNumFastBytes(params.Fb))
210 if (!encoder.SetMatchFinder(params.MatchFinder))
212 if (!encoder.SetLcLpPb(params.Lc, params.Lp, params.Pb))