Home | History | Annotate | Download | only in xz

Lines Matching refs:lp

64      * Maximum value for lc + lp is 4.
135 private int lp;
171 public LZMA2Options(int dictSize, int lc, int lp, int pb, int mode,
175 setLcLp(lc, lp);
205 lp = LP_DEFAULT;
286 * The sum of <code>lc</code> and <code>lp</code> is limited to 4.
291 * <code>lc</code> and <code>lp</code>
294 public void setLcLp(int lc, int lp) throws UnsupportedOptionsException {
295 if (lc < 0 || lp < 0 || lc > LC_LP_MAX || lp > LC_LP_MAX
296 || lc + lp > LC_LP_MAX)
298 "lc + lp must not exceed " + LC_LP_MAX + ": "
299 + lc + " + " + lp);
302 this.lp = lp;
328 * of <code>lc</code> and <code>lp</code>
332 setLcLp(lc, lp);
343 * <code>lp</code> is invalid, or the sum
344 * of <code>lc</code> and <code>lp</code>
347 public void setLp(int lp) throws UnsupportedOptionsException {
348 setLcLp(lc, lp);
362 return lp;