Lines Matching refs:rbits
192 static int deflate_rmax = DEFLATE_MAX_SIZE; /* max rbits */
204 int rbits, abits;
208 abits = rbits = strtol(str, &endp, 0);
217 if ((rbits != 0 && (rbits < BSD_MIN_BITS || rbits > BSD_MAX_BITS))
223 if (rbits > 0) {
225 ccp_wantoptions[0].bsd_bits = rbits;
242 int rbits, abits, def_rmax, def_amax;
247 abits = rbits = -1;
249 abits = rbits = strtol(str, &endp, 0);
253 abits = rbits;
273 if (rbits < 0)
274 rbits = def_rmax;
277 if ((rbits != 0 && (rbits <= DEFLATE_MIN_SIZE || rbits > def_rmax))
285 deflate_rmax = rbits;
288 if (rbits > 0) {
290 ccp_wantoptions[0].deflate_size = rbits;