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) in bsd_alloc() argument
358 if (opt_len != 3 || options[0] != CI_BSD_COMPRESS || options[1] != 3 in bsd_alloc()
449 static void *bsd_comp_alloc (unsigned char *options, int opt_len) in bsd_comp_alloc() argument
451 return bsd_alloc (options, opt_len, 0); in bsd_comp_alloc()
454 static void *bsd_decomp_alloc (unsigned char *options, int opt_len) in bsd_decomp_alloc() argument
456 return bsd_alloc (options, opt_len, 1); in bsd_decomp_alloc()
464 int opt_len, int unit, int debug, int decomp) in bsd_init() argument
469 if ((opt_len != 3) || (options[0] != CI_BSD_COMPRESS) || (options[1] != 3) in bsd_init()
507 int opt_len, int unit, int opthdr, int debug) in bsd_comp_init() argument
509 return bsd_init (state, options, opt_len, unit, debug, 0); in bsd_comp_init()
513 int opt_len, int unit, int opthdr, int mru, in bsd_decomp_init() argument
516 return bsd_init (state, options, opt_len, unit, debug, 1); in bsd_decomp_init()