Home
last modified time | relevance | path

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

12345678910>>...27

/freebsd/contrib/bmake/unit-tests/
H A Ddirective-for-escape.exp2 For: loop body with chars = !"#$%&'()*+,-./0-9:;<=>?@A-Z[\]_^a-z{|}~:
9 For: loop body with chars = !"\\#$%&'()*+,-./0-9:;<=>?@A-Z[\]_^a-z{|}~:
16 For: loop body with i = $:
19 For: loop body with i = ${V}:
22 For: loop body with i = ${V:=-with-modifier}:
25 For: loop body with i = $(V):
28 For: loop body with i = $(V:=-with-modifier):
32 For: loop body with i = $:
35 For: loop body with i = ${V}:
38 For: loop body with i = ${V:=-with-modifier}:
[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 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
27 in .for loop from directive-for.mk:243 with var = value
31 in .for loop from directive-for.mk:269 with var = value
32 For: new loop 2
35 For: loop body with outer = o:
41 For: loop body with inner = i:
H A Dopt-debug-parse.exp2 Parse_PushInput: .for loop in opt-debug-parse.mk, line 16
4 Parsing opt-debug-parse.mk:21: .info trace with multi-line .for loop head
5 make: "opt-debug-parse.mk" line 21: trace with multi-line .for loop head
6 in .for loop from opt-debug-parse.mk:16 with var = value
16 Parse_PushInput: .for loop in opt-debug-parse.mk, line 31
20 in .for loop from opt-debug-parse.mk:31 with a = 1, b = 2, c = 3
23 in .for loop from opt-debug-parse.mk:31 with a = 4, b = 5, c = 6
H A Dmoderrs.mk15 all: unfinished-indirect unfinished-loop-{1,2,3}
16 all: loop-close-{1,2}
47 unfinished-loop-1:
50 unfinished-loop-2:
53 unfinished-loop-3:
62 loop-close-1:
65 loop-close-2:
/freebsd/usr.bin/sed/tests/
H A Dmath.sed33 # main loop, process operators ((), !, *, /, %, +, and -)
34 : 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
[all …]
/freebsd/crypto/openssl/test/
H A Denginetest.c32 int loop; in display_engine_list() local
34 loop = 0; in display_engine_list()
37 loop++, ENGINE_get_id(h), ENGINE_get_name(h)); in display_engine_list()
56 int loop; in test_engines() local
149 for (loop = 0; loop < NUMTOADD; loop++) { in test_engines()
150 sprintf(buf, "id%d", loop); in test_engines()
151 eid[loop] = OPENSSL_strdup(buf); in test_engines()
152 sprintf(buf, "Fake engine type %d", loop); in test_engines()
153 ename[loop] = OPENSSL_strdup(buf); in test_engines()
154 if (!TEST_ptr(block[loop] = ENGINE_new()) in test_engines()
[all …]
/freebsd/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/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
74 in_events.reserve(loop.m_read_fds.size()); in RunImpl()
78 in_events.resize(loop.m_read_fds.size()); in Poll()
80 for (auto &fd : loop.m_read_fds) in Poll()
83 num_events = kevent(loop.m_kqueue, in_events.data(), in_events.size(), in Poll()
88 // in case of EINTR, let the main loop ru in Poll()
115 RunImpl(MainLoopPosix & loop) RunImpl() argument
232 __anone1e9698e0302(MainLoopBase &loop) global() argument
[all...]
/freebsd/crypto/openssl/util/perl/
H A Dcheckhandshake.pm68 my $loop = 0;
77 for ($numtests = 0; $handmessages[$loop][1] != 0; $loop++) {
78 next if (($handmessages[$loop][1] & $handtype) == 0);
80 && $handmessages[$loop][0] == TLSProxy::Message::MT_SERVER_HELLO);
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);
[all …]
/freebsd/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/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/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/tools/test/gpioevents/
H A Dgpioevents.c209 run_read(bool loop, int handle, const char *file, u_int delayus) in run_read() argument
250 } while (loop); in run_read()
254 run_poll(bool loop, int handle, const char *file, int timeout, u_int delayus) in run_poll() argument
286 } while (loop); in run_poll()
290 run_select(bool loop, int handle, const char *file, int timeout, u_int delayus) in run_select() argument
324 } while (loop); in run_select()
328 run_kqueue(bool loop, int handle, const char *file, int timeout, u_int delayus) in run_kqueue() argument
375 } while (loop); in run_kqueue()
379 run_aio_read(bool loop, int handle, const char *file, u_int delayus) in run_aio_read() argument
430 } while (loop); in run_aio_read()
[all …]
/freebsd/contrib/mandoc/
H A Dread.c59 struct buf *loop; /* open .while request line */ member
154 struct buf *firstln, *lastln, *thisln, *loop; in mparse_buf_r() local
168 firstln = lastln = loop = NULL; in mparse_buf_r()
313 if (curp->loop != NULL) { in mparse_buf_r()
314 if (loop == curp->loop) in mparse_buf_r()
319 curp->loop = thisln; in mparse_buf_r()
320 loop = NULL; in mparse_buf_r()
325 if (curp->loop == NULL) { in mparse_buf_r()
333 curp->loop = loop = NULL; in mparse_buf_r()
337 loop = curp->loop; in mparse_buf_r()
[all …]
/freebsd/lib/libc/db/hash/
H A Dhash_func.c111 u_int32_t n, loop; in hash3() local
119 loop = (len + 8 - 1) >> 3; in hash3()
139 } while (--loop); in hash3()
151 u_int32_t h, loop; in hash4() local
161 loop = (len + 8 - 1) >> 3; in hash4()
181 } while (--loop); in hash4()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassRegistry.def197 "loop-extract", "LoopExtractorPass",
379 FUNCTION_PASS("loop-data-prefetch", LoopDataPrefetchPass())
380 FUNCTION_PASS("loop-distribute", LoopDistributePass())
381 FUNCTION_PASS("loop-fusion", LoopFusePass())
382 FUNCTION_PASS("loop-load-elim", LoopLoadEliminationPass())
383 FUNCTION_PASS("loop-simplify", LoopSimplifyPass())
384 FUNCTION_PASS("loop-sink", LoopSinkPass())
385 FUNCTION_PASS("loop-versioning", LoopVersioningPass())
467 FUNCTION_PASS("unify-loop-exits", UnifyLoopExitsPass())
515 "force-hardware-loops;force-hardware-loop-phi;force-nested-hardware-loop;"
[all …]
/freebsd/sys/arm/arm/
H A Ddisassem.c551 int loop; in disasm_print_reglist() local
559 for (loop = 0; loop < 17; ++loop) { in disasm_print_reglist()
561 if (loop == 16 || !(insn & (1 << loop))) { in disasm_print_reglist()
566 if (start == loop - 1) in disasm_print_reglist()
569 di->di_printf("r%d-r%d", start, loop - 1); in disasm_print_reglist()
573 if (insn & (1 << loop)) in disasm_print_reglist()
574 start = loop; in disasm_print_reglist()
/freebsd/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/contrib/byacc/
H A Dreader.c904 loop: in copy_text()
913 goto loop; in copy_text()
925 goto loop; in copy_text()
935 goto loop; in copy_text()
952 goto loop; in copy_text()
1006 loop: in copy_union()
1035 goto loop; in copy_union()
1044 goto loop; in copy_union()
1055 goto loop; in copy_union()
1059 goto loop; in copy_union()
[all …]
/freebsd/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/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/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/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/usr.bin/what/
H A Dwhat.c106 loop: if (c != '@') in search()
109 goto loop; in search()
111 goto loop; in search()
113 goto loop; in search()

12345678910>>...27