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

  /src/sys/conf/
param.c 121 u_int maxfiles = MAXFILES; variable in typeref:typename:u_int
  /src/usr.bin/csplit/
csplit.c 92 static long maxfiles; /* Maximum number of files we can create */ variable in typeref:typename:long
172 for (maxfiles = 1, i = 0; i < sufflen; i++) {
173 if (maxfiles > LONG_MAX / 10)
176 maxfiles *= 10;
180 while (nfiles < maxfiles - 1 && (expr = *argv++) != NULL) {
194 while (reps-- != 0 && nfiles < maxfiles - 1);
463 while (nfiles < maxfiles - 1) {
  /src/usr.sbin/sysinst/
util.c 1782 static int maxfiles = 32; local in function:tzm_set_names
1791 tz_menu = calloc(maxfiles, sizeof *tz_menu);
1793 tz_names = malloc(maxfiles * sizeof *tz_names);
1815 if (nfiles >= maxfiles) {
1817 2 * maxfiles * sizeof *tz_menu);
1821 memset(tz_menu + maxfiles, 0,
1822 maxfiles * sizeof *tz_menu);
1824 2 * maxfiles * sizeof *tz_names);
1828 memset(tz_names + maxfiles, 0,
1829 maxfiles * sizeof *tz_names)
    [all...]

Completed in 18 milliseconds