Lines Matching refs:opt_len
169 static void *bsd_alloc(unsigned char *options, int opt_len, int decomp);
170 static void *bsd_comp_alloc (unsigned char *options, int opt_len);
171 static void *bsd_decomp_alloc (unsigned char *options, int opt_len);
174 int opt_len, int unit, int debug, int decomp);
176 int opt_len, int unit, int opthdr, int debug);
178 int opt_len, int unit, int opthdr, int mru,
352 static void *bsd_alloc (unsigned char *options, int opt_len, int decomp)
358 if (opt_len != 3 || options[0] != CI_BSD_COMPRESS || options[1] != 3
449 static void *bsd_comp_alloc (unsigned char *options, int opt_len)
451 return bsd_alloc (options, opt_len, 0);
454 static void *bsd_decomp_alloc (unsigned char *options, int opt_len)
456 return bsd_alloc (options, opt_len, 1);
464 int opt_len, int unit, int debug, int decomp)
469 if ((opt_len != 3) || (options[0] != CI_BSD_COMPRESS) || (options[1] != 3)
507 int opt_len, int unit, int opthdr, int debug)
509 return bsd_init (state, options, opt_len, unit, debug, 0);
513 int opt_len, int unit, int opthdr, int mru,
516 return bsd_init (state, options, opt_len, unit, debug, 1);