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

  /src/sys/conf/
param.c 121 u_int maxfiles = MAXFILES; variable
param.c 121 u_int maxfiles = MAXFILES; variable
  /src/usr.bin/csplit/
csplit.c 92 static long maxfiles; /* Maximum number of files we can create */ variable
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) {
csplit.c 92 static long maxfiles; /* Maximum number of files we can create */ variable
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/external/bsd/file/dist/src/
apprentice.c 1518 size_t files = 0, maxfiles = 0; local
1562 if (files >= maxfiles) {
1565 maxfiles = (maxfiles + 1) * 2;
1566 mlen = maxfiles * sizeof(*filearr);
apprentice.c 1518 size_t files = 0, maxfiles = 0; local
1562 if (files >= maxfiles) {
1565 maxfiles = (maxfiles + 1) * 2;
1566 mlen = maxfiles * sizeof(*filearr);
  /src/usr.sbin/sysinst/
util.c 1782 static int maxfiles = 32; local
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...]
util.c 1782 static int maxfiles = 32; local
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...]
  /src/external/bsd/top/dist/machine/
m_sunos5.c 199 static int maxfiles = 256; variable
200 #define MAXFILES 2048
1345 maxfiles = (int)(rlim.rlim_max < MAXFILES ? rlim.rlim_max : MAXFILES);
1346 rlim.rlim_cur = (rlim_t)maxfiles;
1350 maxfiles -= 20;
2040 if (fd < maxfiles)
2070 if (fd < maxfiles)
m_sunos5.c 199 static int maxfiles = 256; variable
200 #define MAXFILES 2048
1345 maxfiles = (int)(rlim.rlim_max < MAXFILES ? rlim.rlim_max : MAXFILES);
1346 rlim.rlim_cur = (rlim_t)maxfiles;
1350 maxfiles -= 20;
2040 if (fd < maxfiles)
2070 if (fd < maxfiles)

Completed in 56 milliseconds