Home
last modified time | relevance | path

Searched refs:loop (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/freebsd-14.2/contrib/bmake/unit-tests/
H A Ddirective-for-escape.exp12 For: loop body with i = $:
15 For: loop body with i = ${V}:
21 For: loop body with i = $(V):
30 For: loop body with i = {{}}:
32 For: loop body with i = end}:
49 For: loop body with i = $:
84 For: loop body with i = "
91 For: loop body with i = "
98 For: loop body with i = "
109 For: loop body with i = #:
[all …]
H A Dopt-debug-for.exp1 For: new loop 2
4 For: loop body with outer = a:
9 For: loop body with inner = 1:
11 For: loop body with inner = 2:
13 For: loop body with outer = b:
18 For: loop body with inner = 1:
20 For: loop body with inner = 2:
H A Dopt-debug-parse.exp1 Parse_PushInput: .for loop in opt-debug-parse.mk, line 16
3 Parsing line 21: .info trace with multi-line .for loop head
4 make: "opt-debug-parse.mk" line 21: trace with multi-line .for loop head
5 in .for loop from opt-debug-parse.mk:16 with var = value
14 Parse_PushInput: .for loop in opt-debug-parse.mk, line 31
18 in .for loop from opt-debug-parse.mk:31 with a = 1, b = 2, c = 3
21 in .for loop from opt-debug-parse.mk:31 with a = 4, b = 5, c = 6
H A Ddirective-for.exp17 make: "directive-for.mk" line 166: invalid character ':' in .for loop variable name
18 make: "directive-for.mk" line 173: invalid character '$' in .for loop variable name
19 make: "directive-for.mk" line 185: invalid character '$' in .for loop variable name
28 For: new loop 2
31 For: loop body with outer = o:
37 For: loop body with inner = i:
/freebsd-14.2/usr.bin/sed/tests/
H A Dmath.sed34 : loop
39 b loop
43 b loop
52 b loop
57 b loop
62 b loop
66 b loop
70 b loop
74 b loop
78 b loop
[all …]
/freebsd-14.2/crypto/openssl/test/
H A Denginetest.c32 int loop; in display_engine_list() local
34 loop = 0; in display_engine_list()
56 int loop; in test_engines() local
149 for (loop = 0; loop < NUMTOADD; loop++) { in test_engines()
155 || !TEST_true(ENGINE_set_id(block[loop], eid[loop])) in test_engines()
156 || !TEST_true(ENGINE_set_name(block[loop], ename[loop]))) in test_engines()
159 for (loop = 0; loop < NUMTOADD; loop++) { in test_engines()
162 loop, ENGINE_get_id(block[loop]), in test_engines()
174 for (loop = 0; loop < NUMTOADD; loop++) { in test_engines()
175 OPENSSL_free(eid[loop]); in test_engines()
[all …]
/freebsd-14.2/crypto/openssl/crypto/
H A Dpunycode.c127 unsigned int loop; in ossl_punycode_decode() local
129 for (loop = 0; loop < enc_len; loop++) { in ossl_punycode_decode()
130 if (pEncoded[loop] == delimiter) in ossl_punycode_decode()
131 basic_count = loop; in ossl_punycode_decode()
138 for (loop = 0; loop < basic_count; loop++) { in ossl_punycode_decode()
139 if (is_basic(pEncoded[loop]) == 0) in ossl_punycode_decode()
142 pDecoded[loop] = pEncoded[loop]; in ossl_punycode_decode()
148 for (loop = processed_in; loop < enc_len;) { in ossl_punycode_decode()
155 if (loop >= enc_len) in ossl_punycode_decode()
158 digit = digit_decoded(pEncoded[loop]); in ossl_punycode_decode()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/posix/
H A DMainLoopPosix.cpp47 RunImpl(MainLoopPosix &loop);
54 MainLoopPosix &loop; member in MainLoopPosix::RunImpl
73 MainLoopPosix::RunImpl::RunImpl(MainLoopPosix &loop) : loop(loop) { in RunImpl() argument
80 for (auto &fd : loop.m_read_fds) in Poll()
100 if (loop.m_terminate_request) in ProcessEvents()
115 MainLoopPosix::RunImpl::RunImpl(MainLoopPosix &loop) : loop(loop) { in RunImpl() argument
127 for (const auto &sig : loop.m_signals) in get_sigmask()
208 if (loop.m_terminate_request)
211 loop.ProcessReadObject(handle);
220 if (loop.m_terminate_request)
[all …]
/freebsd-14.2/crypto/openssl/util/perl/
H A Dcheckhandshake.pm68 my $loop = 0;
77 for ($numtests = 0; $handmessages[$loop][1] != 0; $loop++) {
81 $lastmt = $handmessages[$loop][0];
99 $loop = 0;
100 for ($numtests = 0; $handmessages[$loop][1] != 0; $loop++) {
101 next if (($handmessages[$loop][1] & $handtype) == 0);
161 for ($loop = 0; $handmessages[$loop][1] != 0; $loop++) {
162 next if (($handmessages[$loop][1] & $handtype) == 0);
171 .$handmessages[$loop][0]);
174 ok($message->mt == $handmessages[$loop][0],
[all …]
/freebsd-14.2/crypto/openssl/ssl/record/
H A Dssl3_record_tls13.c28 size_t taglen, offset, loop, hdrlen; in tls13_enc() local
132 for (loop = 0; loop < SEQ_NUM_SIZE; loop++) in tls13_enc()
133 iv[offset + loop] = staticiv[offset + loop] ^ seq[loop]; in tls13_enc()
136 for (loop = SEQ_NUM_SIZE; loop > 0; loop--) { in tls13_enc()
137 ++seq[loop - 1]; in tls13_enc()
138 if (seq[loop - 1] != 0) in tls13_enc()
141 if (loop == 0) { in tls13_enc()
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/
H A Dreservation_008_pos.ksh57 typeset -i loop=0
58 while (($loop < $RESV_NUM_FS)); do
59 datasetexists $TESTPOOL/${TESTFS}$loop && \
60 destroy_dataset $TESTPOOL/${TESTFS}$loop -f
62 [[ -d ${TESTDIR}$loop ]] && log_must rm -r ${TESTDIR}$loop
64 ((loop = loop + 1))
/freebsd-14.2/contrib/ntp/scripts/stats/
H A Dloop.S2 loop <- scan(file1, list(day=0, sec=0, offset=0, freq=0, tc=0)) label
3 loop$offset <- loop$offset * 1e6
7 plot(loop$sec, loop$offset, type="l", xlab=paste("MJD", loop$day, "Time (s)"), ylab="PLL Offset (us…
/freebsd-14.2/tools/test/gpioevents/
H A Dgpioevents.c250 } while (loop); in run_read()
286 } while (loop); in run_poll()
324 } while (loop); in run_select()
375 } while (loop); in run_kqueue()
430 } while (loop); in run_aio_read()
464 } while (loop); in run_sigio()
473 bool loop = true; in main() local
499 loop = false; in main()
651 run_read(loop, handle, file, delayus); in main()
663 run_aio_read(loop, handle, file, delayus); in main()
[all …]
/freebsd-14.2/contrib/mandoc/
H A Dread.c309 if (loop == curp->loop) in mparse_buf_r()
314 curp->loop = thisln; in mparse_buf_r()
315 loop = NULL; in mparse_buf_r()
328 curp->loop = loop = NULL; in mparse_buf_r()
332 loop = curp->loop; in mparse_buf_r()
334 curp->loop = loop = NULL; in mparse_buf_r()
405 if (loop != NULL && in mparse_buf_r()
407 loop = loop->next; in mparse_buf_r()
409 if (loop != NULL) { in mparse_buf_r()
412 if (ln.sz < loop->sz) in mparse_buf_r()
[all …]
/freebsd-14.2/lib/libc/db/hash/
H A Dhash_func.c114 u_int32_t n, loop; in hash3() local
122 loop = (len + 8 - 1) >> 3; in hash3()
142 } while (--loop); in hash3()
154 u_int32_t h, loop; in hash4() local
164 loop = (len + 8 - 1) >> 3; in hash4()
184 } while (--loop); in hash4()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/
H A DPassRegistry.def179 "loop-extract", "LoopExtractorPass",
361 FUNCTION_PASS("loop-sink", LoopSinkPass())
490 "force-hardware-loops;force-hardware-loop-phi;force-nested-hardware-loop;"
491 "force-hardware-loop-guard;hardware-loop-decrement=N;"
492 "hardware-loop-counter-bitwidth=N")
497 "no-use-loop-info;use-loop-info;no-verify-fixpoint;verify-fixpoint;"
500 "loop-unroll", "LoopUnrollPass",
507 "loop-vectorize", "LoopVectorizePass",
602 LOOP_PASS("loop-reroll", LoopRerollPass())
606 LOOP_PASS("no-op-loop", NoOpLoopPass())
[all …]
/freebsd-14.2/sys/arm/arm/
H A Ddisassem.c552 int loop; in disasm_print_reglist() local
560 for (loop = 0; loop < 17; ++loop) { in disasm_print_reglist()
562 if (loop == 16 || !(insn & (1 << loop))) { in disasm_print_reglist()
567 if (start == loop - 1) in disasm_print_reglist()
570 di->di_printf("r%d-r%d", start, loop - 1); in disasm_print_reglist()
574 if (insn & (1 << loop)) in disasm_print_reglist()
575 start = loop; in disasm_print_reglist()
/freebsd-14.2/contrib/netbsd-tests/net/icmp/
H A Dt_ping.c151 int loop, succ; in doping() local
180 for (loop = 0; loop < loops; loop++) { in doping()
182 icmp->icmp_seq = htons(loop); in doping()
331 int s, x, loop; in ATF_TC_BODY() local
342 for (loop = 0;; loop++) { in ATF_TC_BODY()
347 if (loop == 1) in ATF_TC_BODY()
359 if (loop == 0 && ipstat[IP_STAT_TOOLONG] != 0) in ATF_TC_BODY()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_rtl.cpp46 rep->loop[i].thr_ctx, rep->loop[i].mtx_ctx1, rep->loop[i].mtx_ctx0); in ReportDeadlock()
47 PrintStackTrace(thr, rep->loop[i].stk[1]); in ReportDeadlock()
48 if (rep->loop[i].stk[0]) { in ReportDeadlock()
50 rep->loop[i].mtx_ctx0); in ReportDeadlock()
51 PrintStackTrace(thr, rep->loop[i].stk[0]); in ReportDeadlock()
/freebsd-14.2/contrib/bmake/
H A Drealpath.c120 loop: in realpath()
142 goto loop; in realpath()
150 goto loop; in realpath()
200 goto loop; in realpath()
210 goto loop; in realpath()
/freebsd-14.2/contrib/byacc/
H A Dreader.c821 loop: in copy_text()
842 goto loop; in copy_text()
852 goto loop; in copy_text()
869 goto loop; in copy_text()
914 loop: in copy_union()
923 goto loop; in copy_union()
927 goto loop; in copy_union()
937 goto loop; in copy_union()
946 goto loop; in copy_union()
2738 loop: in copy_action()
[all …]
/freebsd-14.2/contrib/bearssl/src/symcipher/
H A Daes_pwr8.c95 label(loop) in key_schedule_128()
134 bdnz(loop) in key_schedule_128()
202 label(loop) in key_schedule_192()
260 bdnz(loop) in key_schedule_192()
339 label(loop) in key_schedule_256()
398 bdnz(loop) in key_schedule_256()
/freebsd-14.2/usr.bin/what/
H A Dwhat.c117 loop: if (c != '@') in search()
120 goto loop; in search()
122 goto loop; in search()
124 goto loop; in search()
/freebsd-14.2/crypto/openssl/crypto/bn/
H A Dbn_ctx.c168 unsigned loop = 0; in BN_CTX_free() local
169 while (loop < BN_CTX_POOL_SIZE) in BN_CTX_free()
170 BIO_printf(trc_out, "%02x ", pool->vals[loop++].dmax); in BN_CTX_free()
302 unsigned int loop; in BN_POOL_finish() local
306 for (loop = 0, bn = p->head->vals; loop++ < BN_CTX_POOL_SIZE; bn++) in BN_POOL_finish()
319 unsigned int loop; in BN_POOL_get() local
329 for (loop = 0, bn = item->vals; loop++ < BN_CTX_POOL_SIZE; bn++) { in BN_POOL_get()
/freebsd-14.2/sys/dev/liquidio/base/
H A Dcn23xx_pf_device.c202 loop) { in lio_cn23xx_pf_reset_io_queues()
205 loop--; in lio_cn23xx_pf_reset_io_queues()
208 if (!loop) { in lio_cn23xx_pf_reset_io_queues()
536 loop) { in lio_cn23xx_pf_enable_io_queues()
539 loop--; in lio_cn23xx_pf_enable_io_queues()
541 if (!loop) { in lio_cn23xx_pf_enable_io_queues()
588 int loop; in lio_cn23xx_pf_disable_io_queues() local
616 loop--; in lio_cn23xx_pf_disable_io_queues()
624 0ULL) && loop--) { in lio_cn23xx_pf_disable_io_queues()
643 loop--; in lio_cn23xx_pf_disable_io_queues()
[all …]

12345678910>>...27