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

  /src/usr.bin/jot/
jot.c 71 static long reps = REPS_DEF; variable
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
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
220 if ((reps = atoi(optarg)) <= 0)
387 if (reps >= 0 && --reps <= 0)
1004 reps = atoi(*argv);
1009 if (!reps)
1010 reps = -1;
1012 if (reps)
  /src/usr.bin/vmstat/
vmstat.c 340 int reps; local
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...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/
output_test_helper.cc 125 TestReporter(std::vector<benchmark::BenchmarkReporter*> reps)
126 : reporters_(reps) {}
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
output_test_helper.cc 134 TestReporter(std::vector<benchmark::BenchmarkReporter*> reps)
135 : reporters_(reps) {}
  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 849 static U32 ZDICT_maxRep(U32 const reps[ZSTD_REP_NUM])
851 U32 maxRep = reps[0];
854 maxRep = MAX(maxRep, reps[r]);
  /src/external/gpl3/gcc.old/dist/gcc/cp/
mangle.cc 3397 unsigned reps = 1; local
3399 reps = range_expr_nelts (ce->index);
3400 for (unsigned j = 0; j < reps; ++j)
  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 1356 repcodes_t const reps = ZSTD_newRep(opt[cur].rep, lastStretch.off, opt[cur].litlen==0); local
1357 ZSTD_memcpy(rep, &reps, sizeof(repcodes_t));
  /src/external/gpl3/binutils/dist/gprofng/src/
ipc.cc 2208 Vector<Obj> *reps = (Vector<Obj>*)res->fetch (0); local
2210 if (reps)
2212 Vector <long long> *fids = (Vector <long long> *)reps->fetch (2);
2214 ipc_log (" returning TL reps (dDscrs); nreps=%d:", sz);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
ipc.cc 2208 Vector<Obj> *reps = (Vector<Obj>*)res->fetch (0); local
2210 if (reps)
2212 Vector <long long> *fids = (Vector <long long> *)reps->fetch (2);
2214 ipc_log (" returning TL reps (dDscrs); nreps=%d:", sz);

Completed in 49 milliseconds