Home
last modified time | relevance | path

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

12345678910>>...29

/src/crypto/krb5/src/util/verto/
H A Dev_wrap.h4 #define acquire_cb ((loop)->acquire_cb)
5 #define activecnt ((loop)->activecnt)
6 #define anfdmax ((loop)->anfdmax)
7 #define anfds ((loop)->anfds)
8 #define async_pending ((loop)->async_pending)
9 #define asynccnt ((loop)->asynccnt)
10 #define asyncmax ((loop)->asyncmax)
11 #define asyncs ((loop)->asyncs)
12 #define backend ((loop)->backend)
13 #define backend_fd ((loop)->backend_fd)
[all …]
/src/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 Ddirective-for.exp17 make: directive-for.mk:166: Invalid character ":" in .for loop variable name
18 make: directive-for.mk:173: Invalid character "$" in .for loop variable name
19 make: directive-for.mk:185: Invalid character "$" in .for loop variable name
20 make: directive-for.mk:208: Missing iteration variables in .for loop
22 in .for loop from directive-for.mk:232 with var = value
26 in .for loop from directive-for.mk:261 with var = value
27 For: new loop 2
30 For: loop body with outer = o:
36 For: loop body with inner = i:
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.exp2 Parse_PushInput: .for loop in opt-debug-parse.mk:16
4 Parsing opt-debug-parse.mk:21: .info trace with multi-line .for loop head
5 make: opt-debug-parse.mk: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: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:
/src/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 …]
/src/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 BIO_snprintf(buf, sizeof(buf), "id%d", loop); in test_engines()
151 eid[loop] = OPENSSL_strdup(buf); in test_engines()
152 BIO_snprintf(buf, sizeof(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 …]
/src/crypto/openssl/crypto/
H A Dpunycode.c128 unsigned int loop; in ossl_punycode_decode() local
130 for (loop = 0; loop < enc_len; loop++) { in ossl_punycode_decode()
131 if (pEncoded[loop] == delimiter) in ossl_punycode_decode()
132 basic_count = loop; in ossl_punycode_decode()
139 for (loop = 0; loop < basic_count; loop++) { in ossl_punycode_decode()
140 if (is_basic(pEncoded[loop]) == 0) in ossl_punycode_decode()
143 pDecoded[loop] = pEncoded[loop]; in ossl_punycode_decode()
149 for (loop = processed_in; loop < enc_len;) { in ossl_punycode_decode()
156 if (loop >= enc_len) in ossl_punycode_decode()
159 digit = digit_decoded(pEncoded[loop]); in ossl_punycode_decode()
[all …]
/src/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()
100 if (loop.m_terminate_request) in ProcessEvents()
104 loop.ProcessReadObject(out_events[i].ident); in ProcessEvents()
107 loop.ProcessSignal(out_events[i].ident); in ProcessEvents()
[all …]
/src/crypto/openssl/util/perl/
H A Dcheckhandshake.pm73 my $loop = 0;
82 for ($numtests = 0; $handmessages[$loop][1] != 0; $loop++) {
83 next if (($handmessages[$loop][1] & $handtype) == 0);
85 && $handmessages[$loop][0] == TLSProxy::Message::MT_SERVER_HELLO);
86 $lastmt = $handmessages[$loop][0];
104 $loop = 0;
105 for ($numtests = 0; $handmessages[$loop][1] != 0; $loop++) {
106 next if (($handmessages[$loop][1] & $handtype) == 0);
166 for ($loop = 0; $handmessages[$loop][1] != 0; $loop++) {
167 next if (($handmessages[$loop][1] & $handtype) == 0);
[all …]
/src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/
H A Dreservation_008_pos.ksh58 typeset -i loop=0
59 while (($loop < $RESV_NUM_FS)); do
60 datasetexists $TESTPOOL/${TESTFS}$loop && \
61 destroy_dataset $TESTPOOL/${TESTFS}$loop -f
63 [[ -d ${TESTDIR}$loop ]] && log_must rm -r ${TESTDIR}$loop
65 ((loop = loop + 1))
/src/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…
/src/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 …]
/src/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 …]
/src/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()
/src/crypto/krb5/src/plugins/kdb/db2/libdb2/hash/
H A Dhash_func.c117 u_int32_t n, loop;
125 loop = (len + 8 - 1) >> 3;
145 } while (--loop);
158 u_int32_t h, loop; in hash4() local
168 loop = (len + 8 - 1) >> 3; in hash4()
188 } while (--loop); in hash4()
/src/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 …]
/src/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()
/src/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()
/src/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 …]
/src/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()
/src/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()
/src/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()
/src/crypto/openssl/crypto/bn/
H A Dbn_ctx.c171 unsigned loop = 0; in BN_CTX_free() local
172 while (loop < BN_CTX_POOL_SIZE) in BN_CTX_free()
173 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()
318 unsigned int loop; in BN_POOL_get() local
326 for (loop = 0, bn = item->vals; loop++ < BN_CTX_POOL_SIZE; bn++) { in BN_POOL_get()

12345678910>>...29