HomeSort by: relevance | last modified time | path
    Searched defs:max_length (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.bin/fmt/
fmt.c 66 /* LIZ@UOM 6/18/85 --New variables goal_length and max_length */
68 #define MAX_LENGTH 75
70 static size_t max_length; /* Max line length in output */ variable in typeref:typename:size_t
109 max_length = MAX_LENGTH;
128 (void)getnum(optarg, "max", &max_length, 1);
147 if (argc > 0 && getnum(*argv, "max", &max_length, 0)) {
153 if (max_length <= goal_length) {
155 "length (%zu)", max_length, goal_length);
462 if ((t <= goal_length) || ((t <= max_length) &
    [all...]
  /src/sys/dev/scsipi/
scsi_tape.h 130 u_int8_t max_length[3]; /* Most significant */ member in struct:scsi_block_limits_data
  /src/common/dist/zlib/
trees.c 124 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
546 int max_length = desc->stat_desc->max_length; local in function:gen_bitlen
564 if (bits > max_length) bits = max_length, overflow++;
584 bits = max_length - 1;
588 s->bl_count[max_length]--;
590 * but this does not affect bl_count[max_length]
600 for (bits = max_length; bits != 0; bits--) {
  /src/sys/net/
zlib.c 2226 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s
2593 int max_length = desc->stat_desc->max_length; local in function:gen_bitlen
2611 if (bits > max_length) bits = max_length, overflow++;
2631 bits = max_length-1;
2635 s->bl_count[max_length]--;
2637 * but this does not affect bl_count[max_length]
2647 for (bits = max_length; bits != 0; bits--) {

Completed in 18 milliseconds