Searched refs:maxlength (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/usr.bin/column/
H A Dcolumn.c73 static int maxlength; /* longest record */ variable
140 maxlength = roundup(maxlength + 1, TAB);
143 else if (maxlength >= termwidth)
158 numcols = termwidth / maxlength;
159 endcol = maxlength;
167 endcol = maxlength;
174 endcol += maxlength;
186 numcols = termwidth / maxlength;
192 endcol = maxlength;
[all...]
/freebsd-10.0-release/usr.sbin/nandsim/
H A Dnandsim_cfgparse.h56 * maxlength = contains maximum length of an array (used only with either
64 uint32_t maxlength; member in struct:nandsim_key
H A Dnandsim_cfgparse.c603 cnt = (cnt <= key->maxlength) ? cnt : key->maxlength;
672 strncpy(key->field, (char *)&strbuf, (size_t)(key->maxlength - 1));
/freebsd-10.0-release/crypto/openssl/apps/
H A Dtsget16 my ($maxlength, $state) = @_;
21 $data_len = $maxlength if $data_len > $maxlength;
/freebsd-10.0-release/sys/tools/
H A Dmakeobjops.awk81 # If a line exceeds maxlength, split it into multiple
89 function format_line (line, maxlength, indent)
93 while (length(line) > maxlength) {
96 # to the left of it is just within maxlength.
99 if (!match(substr(line, 1, maxlength + 1), /^.*, /))
/freebsd-10.0-release/usr.sbin/makefs/
H A Dcd9660.c1053 int maxlength; local
1061 maxlength = 8;
1063 maxlength = 31;
1065 maxlength = ISO_FILENAME_MAXLENGTH_BEFORE_VERSION;
1087 while (count < maxlength) {
1094 if ((count + digits) < maxlength)
1097 numbts = maxlength - (digits);
1134 while ((*naming != ';') && (numbts < maxlength)) {
/freebsd-10.0-release/sys/kern/
H A Dvfs_cache.c362 int count, maxlength, used, pct; local
369 maxlength = 0;
381 if (maxlength < count)
382 maxlength = count;
392 error = SYSCTL_OUT(req, &maxlength, sizeof(maxlength));
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c190 int maxlength; member in struct:huffman_code
2344 unsigned char *lengths, int numsymbols, char maxlength)
2355 code->maxlength = INT_MIN;
2357 for(i = 1; i <= maxlength; i++)
2381 if(length > code->maxlength)
2382 code->maxlength = length;
2489 if (code->maxlength < code->minlength || code->maxlength > 10)
2492 code->tablesize = code->maxlength;
2343 create_code(struct archive_read *a, struct huffman_code *code, unsigned char *lengths, int numsymbols, char maxlength) argument
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dreadelf.c7370 unsigned long maxlength = 0;
7389 if (maxlength < ++lengths[hn])
7390 ++maxlength;
7394 counts = calloc (maxlength + 1, sizeof (*counts));
7409 for (i = 1; i <= maxlength; ++i)
7435 unsigned long maxlength = 0;
7553 if (length > maxlength)
7554 maxlength = length;
7558 counts = calloc (maxlength + 1, sizeof (*counts));
7573 for (j = 1; j <= maxlength;
7367 unsigned long maxlength = 0; local
7432 unsigned long maxlength = 0; local
[all...]

Completed in 238 milliseconds