HomeSort by: relevance | last modified time | path
    Searched refs:loops (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/usr.bin/make/unit-tests/
directive-for-lines.mk 3 # Tests for the line numbers that are reported in .for loops.
7 # messages inside .for loops had been wrong since ParseGetLine skipped empty
directive-for-empty.mk 3 # Tests for .for loops containing conditions of the form 'empty(var:...)'.
37 # The typical way of mistakenly using 'empty' with variables from .for loops
42 # Instead of the 'empty' function, the variables from .for loops can be
83 # the .for loops in a separate scope. To match the current behavior, there
84 # has to be one scope per included file. There may be .for loops using the
99 # that variables from .for loops can only affect expressions in the current
100 # file. If variables from .for loops were implemented as global variables,
107 # Another tricky detail are nested .for loops in a single file that use the
110 # possible though. Assuming there are two nested .for loops, both using the
124 # from .for loops and the modifiers mentioned above
    [all...]
directive-for-break.mk 3 # Tests for .break in .for loops, which immediately terminates processing of
22 # other .for loops are continued normally.
cond-func-defined.mk 40 # Variables from .for loops are not defined.
46 # In .for loops, expressions based on the loop variables are substituted at
opt-debug-for.mk 4 # parsing and evaluating .for loops.
include-main.mk 11 # properly handle nested includes and even .for loops.
opt-debug-parse.mk 29 # In .for loops with multiple variables, the variable details are included in
varname-empty.mk 11 # .for loops. Another use case is in a variable assignment of the form
26 # the empty name, leading to all kinds of unexpected effects in .for loops
varmod-loop-varname.mk 111 # loop. This is different from the .for loops, which substitute the
116 # the string "1a b c1 2a b c2 3a b c3", making the two loops independent.
varmod-undefined.mk 13 # The pattern ${:Uword} is heavily used when expanding .for loops.
directive-for-errors.mk 3 # Tests for error handling in .for loops.
directive-for-if.mk 34 # loops changed from plain textual value to using expressions of the form
varname-dot-suffixes.mk 75 # variable names are typically in singular form, and .for loops do not use
varmod-loop.mk 55 # loop. This is different from the .for loops, which substitute the
60 # the string "1a b c1 2a b c2 3a b c3", making the two loops independent.
directive-for.mk 179 # variable name in .for loops, based on some other variable. The .for loops
  /src/tests/net/in_cksum/
in_cksum.c 176 int loops, old_sum, off, len; local in function:main
186 loops = 16;
197 loops = atoi(optarg);
206 errx(1, "%s [-l <loops>] [-u <unalign> [-i <iterations> "
211 for (; loops; --loops) {
219 if (loops == 1)
  /src/sys/arch/dreamcast/dev/microcode/
Makefile 12 CFLAGS += -fomit-frame-pointer -funroll-loops -finline-functions
  /src/sys/rump/librump/rumpkern/
emul.c 221 int loops; local in function:rump_delay
242 for (loops = 0; loops < 1000*1000*100; loops++) {
  /src/sys/dev/pci/bktr/
bktr_audio.c 484 int auto_detect, loops; local in function:msp_autodetect
530 loops = 10;
534 loops++;
535 } while (auto_detect > 0xff && loops < 50);
537 bktr_name(bktr), loops*10, auto_detect);
  /src/sys/arch/x86/x86/
errata.c 511 int loops = 0; local in function:amd_errata_1474_thread
521 loops = 900;
524 while (loops++ < AMD_ERRATA_1474_BAD_DAYS) {
525 if (loops == AMD_ERRATA_1474_WARN_DAYS) {
  /src/tests/net/icmp/
t_ping.c 140 doping(const char *target, int loops, u_int pktsize)
180 for (loop = 0; loop < loops; loop++) {
208 #define LOOPS 10000
233 succ = doping("1.1.1.10", LOOPS, 56);
234 printf("got %d/%d\n", succ, LOOPS);
261 succ = doping("1.1.1.20", LOOPS, 56);
265 succ = doping("1.1.1.10", LOOPS, 56);
269 printf("got %d/%d\n", succ, LOOPS);
  /src/sys/modules/examples/luareadhappy/
happy.lua 32 -- stay), or it loops endlessly in a cycle which does not include 1. Those
  /src/lib/libc/resolv/
res_send.c 473 int done = 0, loops = 0; local in function:res_nsend
494 if (++loops < 42) /*doug adams*/
559 int done = 0, loops = 0; local in function:res_nsend
576 if (++loops < 42) /*doug adams*/
  /src/sys/dev/ic/
isp.c 164 int loops, i, dodnld = 1; local in function:isp_reset
492 for (val = loops = 0; loops < 30000; loops++) {
509 for (loops = 0; loops < 10000; loops++) {
513 for (val = loops = 0; loops < 500000; loops ++)
7887 int loops = 0; local in function:isp_rd_2400_nvram
    [all...]
  /src/sys/netinet/
ip_mroute.c 2605 uint32_t loops; local in function:bw_meter_process
2613 loops = now.tv_sec - last_tv_sec;
2615 if (loops > BW_METER_BUCKETS)
2616 loops = BW_METER_BUCKETS;
2624 for (i = (now.tv_sec - loops) % BW_METER_BUCKETS; loops > 0; loops--) {

Completed in 39 milliseconds

1 2