HomeSort by: relevance | last modified time | path
    Searched refs:reps (Results 1 - 7 of 7) sorted by relevancy

  /src/usr.bin/jot/
jot.c 71 static long reps = REPS_DEF; variable in typeref:typename:long
119 for (i = 1; i <= reps || reps == 0; i++)
120 putdata(random() * x + begin, reps - i);
129 for (i = 1; i <= reps || reps == 0; i++, x += step)
130 putdata(x, reps - i);
143 #define REPS 4
216 reps = strtoul(argv[0], &ep, 0);
217 if (*ep != 0 || reps < 0
    [all...]
  /src/usr.bin/csplit/
csplit.c 90 static long reps; /* Number of repetitions for this pattern */ variable in typeref:typename:long
184 reps = strtol(*argv + 1, &ep, 10);
185 if (reps < 0 || *ep != '}' || errno != 0)
189 reps = 0;
194 while (reps-- != 0 && nfiles < maxfiles - 1);
475 if (reps-- == 0)
  /src/usr.bin/hexdump/
parse.c 121 tfu->reps = 1;
129 tfu->reps = atoi(savep);
176 cursize += fu->bcnt * fu->reps;
213 cursize += bcnt * fu->reps;
455 fu->reps += (blocksize - fs->bcnt) / fu->bcnt;
456 if (fu->reps > 1) {
hexdump.h 60 int reps; /* repetition count */ member in struct:_fu
display.c 86 for (cnt = fu->reps; cnt; --cnt)
  /src/usr.sbin/iostat/
iostat.c 96 static int reps, interval; variable in typeref:typename:int
220 if ((reps = atoi(optarg)) <= 0)
386 if (reps >= 0 && --reps <= 0)
1003 reps = atoi(*argv);
1008 if (!reps)
1009 reps = -1;
1011 if (reps)
  /src/usr.bin/vmstat/
vmstat.c 340 int reps; local in function:main
346 reps = todo = verbose = wide = 0;
352 reps = atoi(optarg);
451 reps = atoi(*argv);
456 if (!reps)
457 reps = -1;
458 } else if (reps)
463 * VMSTAT/dovmstat() output. So perform the interval/reps handling
513 if (reps >= 0 && --reps <=0
    [all...]

Completed in 40 milliseconds