/openbsd/usr.bin/jot/ |
H A D | jot.c | 57 static long reps = 100; variable 167 if (reps == 0) in main() 204 if (t < reps) in main() 205 reps = t; in main() 212 if (reps == 1) in main() 215 step = (ender - begin) / (reps - 1); in main() 222 reps = 0; in main() 226 reps = (ender - begin + step) / step; in main() 227 if (reps <= 0) in main() 237 begin = ender - reps * step + step; in main() [all …]
|
/openbsd/gnu/usr.bin/perl/t/op/ |
H A D | rand.t | 27 my $reps = 100_000; # How many times to try rand each time. 65 my $mean = $reps * $prob; 66 my $stddev = sqrt($reps * $prob * (1 - $prob)); 71 note("reps=$reps; slots=$nslots; min=$min mean=$mean max=$max"); 73 for (1..$reps) { 105 for (1..$reps) {
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | jv-valprint.c | 85 int reps; in java_value_print() local 122 for (reps = 1; i + reps < length; reps++) in java_value_print() 135 if (reps == 1) in java_value_print() 138 fprintf_filtered (stream, "%d..%d: ", i, i + reps - 1); in java_value_print() 146 i += reps; in java_value_print() 178 for (reps = 1; i + reps < length; reps++) in java_value_print() 187 if (reps == 1) in java_value_print() 190 fprintf_filtered (stream, "%d..%d: ", i, i + reps - 1); in java_value_print() 196 i += reps; in java_value_print()
|
H A D | p-lang.c | 184 unsigned int reps; in pascal_printstr() local 195 reps = 1; in pascal_printstr() 199 ++reps; in pascal_printstr() 202 if (reps > repeat_count_threshold) in pascal_printstr() 213 fprintf_filtered (stream, " <repeats %u times>", reps); in pascal_printstr()
|
H A D | m2-lang.c | 132 unsigned int reps; in m2_printstr() local 143 reps = 1; in m2_printstr() 147 ++reps; in m2_printstr() 150 if (reps > repeat_count_threshold) in m2_printstr() 161 fprintf_filtered (stream, " <repeats %u times>", reps); in m2_printstr()
|
H A D | c-lang.c | 117 unsigned int reps; in c_printstr() local 131 reps = 1; in c_printstr() 137 ++reps; in c_printstr() 140 if (reps > repeat_count_threshold) in c_printstr() 151 fprintf_filtered (stream, " <repeats %u times>", reps); in c_printstr()
|
H A D | valprint.c | 773 unsigned int reps; in val_print_array_elements() local 798 reps = 1; in val_print_array_elements() 802 ++reps; in val_print_array_elements() 806 if (reps > repeat_count_threshold) in val_print_array_elements() 810 annotate_elt_rep (reps); in val_print_array_elements() 811 fprintf_filtered (stream, " <repeats %u times>", reps); in val_print_array_elements()
|
H A D | f-lang.c | 184 unsigned int reps; in f_printstr() local 195 reps = 1; in f_printstr() 199 ++reps; in f_printstr() 202 if (reps > repeat_count_threshold) in f_printstr() 213 fprintf_filtered (stream, " <repeats %u times>", reps); in f_printstr()
|
H A D | ada-valprint.c | 461 unsigned int reps; in printstr() local 472 reps = 1; in printstr() 478 reps += 1; in printstr() 481 if (reps > repeat_count_threshold) in printstr() 495 fprintf_filtered (stream, " <repeats %u times>", reps); in printstr()
|
H A D | objc-lang.c | 363 unsigned int reps; in objc_printstr() local 374 reps = 1; in objc_printstr() 378 ++reps; in objc_printstr() 381 if (reps > repeat_count_threshold) in objc_printstr() 392 fprintf_filtered (stream, " <repeats %u times>", reps); in objc_printstr()
|
/openbsd/usr.sbin/iostat/ |
H A D | iostat.c | 90 int hz, reps; variable 128 reps = strtonum(optarg, 1, INT_MAX, &errstr); in main() 202 if (reps >= 0 && --reps <= 0) in main() 445 reps = strtonum(*argv, 1, INT_MAX, &errstr); in selectdrives() 455 if (!reps) in selectdrives() 456 reps = -1; in selectdrives() 458 if (reps) in selectdrives()
|
/openbsd/gnu/usr.bin/perl/cpan/Digest-SHA/t/ |
H A D | bitbuf.t | 46 my $reps = 80000; 51 while ($reps > $maxbits) { 54 $reps -= $num; 56 $state->add_bits($ONEBITS, $reps);
|
H A D | gg.t | 50 my $reps = shift @vecs; 52 my $bitstr = ($frag x $reps) . $tail;
|
/openbsd/usr.bin/csplit/ |
H A D | csplit.c | 83 long reps; /* Number of repetitions for this pattern */ variable 177 reps = strtol(*argv + 1, &ep, 10); in main() 178 if (reps < 0 || *ep != '}' || errno != 0) in main() 182 reps = 0; in main() 187 } while (reps-- != 0 && nfiles < maxfiles - 1); in main() 463 if (reps-- == 0) in do_lineno()
|
/openbsd/usr.bin/hexdump/ |
H A D | parse.c | 111 tfu->reps = 1; in add() 119 tfu->reps = atoi(savep); in add() 165 cursize += fu->bcnt * fu->reps; in size() 202 cursize += bcnt * fu->reps; in size() 435 fu->reps += (blocksize - fs->bcnt) / fu->bcnt; in rewrite() 436 if (fu->reps > 1) { in rewrite()
|
H A D | hexdump.h | 61 int reps; /* repetition count */ member
|
H A D | display.c | 75 for (cnt = fu->reps; cnt; --cnt) in display()
|
/openbsd/usr.bin/vmstat/ |
H A D | vmstat.c | 131 int c, todo = 0, reps = 0; in main() local 139 reps = strtonum(optarg, 0, INT_MAX, &errstr); in main() 231 reps = strtonum(*argv, 0, INT_MAX, &errstr); in main() 239 if (!reps) in main() 240 reps = -1; in main() 241 } else if (reps) in main() 257 dovmstat(interval, reps); in main() 318 dovmstat(u_int interval, int reps) in dovmstat() argument 382 if (reps >= 0 && --reps <= 0) in dovmstat()
|
/openbsd/gnu/usr.bin/binutils/binutils/ |
H A D | sysroff.info | 170 (("comp reps") (addrsize bytes) ("compreps")))
|
/openbsd/gnu/usr.bin/binutils-2.17/binutils/ |
H A D | sysroff.info | 170 (("comp reps") (addrsize bytes) ("compreps")))
|
/openbsd/gnu/gcc/gcc/ |
H A D | tree-ssa-pre.c | 1890 bitmap reps = get_representative (vuse_names, in compute_vuse_representatives() local 1892 if (reps) in compute_vuse_representatives() 1896 dump_bitmap_of_names (dump_file, reps); in compute_vuse_representatives()
|
/openbsd/share/dict/ |
H A D | web2 | 167477 reps
|
/openbsd/games/fortune/datfiles/ |
H A D | fortunes2 | 1662 aggressive persons, for they are sales reps.
|