/src/usr.bin/hexdump/ |
hexdump.h | 60 int reps; /* repetition count */ member in struct:_fu
|
hexdump.h | 60 int reps; /* repetition count */ member in struct:_fu
|
/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...] |
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)
|
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.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)
|
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...] |
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...] |