Home
last modified time | relevance | path

Searched refs:loop (Results 226 – 250 of 1016) sorted by relevance

12345678910>>...41

/openbsd/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Daddissub.t7 alarm 10; # likely failure mode is an infinite loop
/openbsd/gnu/usr.bin/binutils/opcodes/
H A Dz8kgen.c918 int loop = 1; in internal() local
921 while (loop) in internal()
925 loop = 0; in internal()
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Dz8kgen.c918 int loop = 1; in internal() local
921 while (loop) in internal()
925 loop = 0; in internal()
/openbsd/sys/arch/arm64/arm64/
H A Ddb_interface.c278 size_t loop; in db_write_bytes() local
287 loop = size; in db_write_bytes()
288 while (loop-- > 0) { in db_write_bytes()
H A Dmachdep.c237 u_int loop; in cpu_startup() local
254 for (loop = 0; loop < atop(MSGBUFSIZE); ++loop) in cpu_startup()
255 pmap_kenter_pa((vaddr_t)msgbufaddr + loop * PAGE_SIZE, in cpu_startup()
256 msgbufphys + loop * PAGE_SIZE, PROT_READ | PROT_WRITE); in cpu_startup()
/openbsd/usr.sbin/mopd/moptrace/
H A DMakefile5 loop-bsd.c dl.c rc.c
/openbsd/gnu/llvm/llvm/docs/
H A DCodingStandards.rst920 It is strongly preferred to structure the loop like this:
1322 Don't evaluate ``end()`` every time through a loop
1326 to write an explicit iterator-based loop, pay close attention to whether
1327 ``end()`` is re-evaluated on each loop iteration. One common mistake is to
1328 write a loop in this style:
1337 through the loop. Instead of writing the loop like this, we strongly prefer
1365 would handily confirm!). If you write the loop in the second form, it is
1366 immediately obvious without even looking at the body of the loop that the
1599 can't be hoisted above the ``if`` or loop statement, see below).
1652 // This should also omit braces. The `for` loop contains only a single
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/
H A DTODO309 See also architectural changes related to the event loop. LIBGDB
310 can't be finished until there is a generic event loop being used by
321 While GDB uses an event loop when prompting the user for input. That
322 event loop is not exploited by targets when they allow the target
/openbsd/lib/libc/arch/mips64/string/
H A Dstrcmp.S46 lbu t0, 1(a0) # unroll loop
/openbsd/usr.sbin/mopd/mopd/
H A DMakefile5 version.c pf.c loop-bsd.c dl.c rc.c file.c
/openbsd/gnu/llvm/compiler-rt/lib/builtins/avr/
H A Dudivmodqi4.S25 ldi r23, 9 ; Only loop 8 rounds for uint8.
/openbsd/gnu/gcc/gcc/config/ia64/
H A Dcrtbegin.asm184 .loop: label
206 (p6) br.cond.sptk.few .loop
/openbsd/sys/nfs/
H A Dnfs_srvcache.c280 loop: in nfsrv_lookupcache()
288 goto loop; in nfsrv_lookupcache()
/openbsd/sys/lib/libkern/arch/mips64/
H A Dstrcmp.S49 lbu t0, 1(a0) # unroll loop
/openbsd/usr.bin/tmux/
H A Dformat.c157 u_int loop; member
277 to->loop = from->loop; in format_copy_state()
516 struct client *loop; in format_cb_session_attached_list() local
529 if (loop->session == s) { in format_cb_session_attached_list()
708 struct client *loop; in format_cb_window_active_clients() local
718 client_session = loop->session; in format_cb_window_active_clients()
735 struct client *loop; in format_cb_window_active_clients_list() local
976 struct session *loop; in format_cb_session_group_list() local
1009 struct client *loop; in format_cb_session_group_attached_list() local
4814 es->loop++; in format_expand1()
[all …]
/openbsd/gnu/gcc/gcc/config/mt/
H A Dmt.md131 ;; of the loop, so it is not here to be matched.
156 ;; these take a constant or register loop count and a loop length
157 ;; offset. Unfortunately the loop can only be up to 256 instructions,
158 ;; We deal with longer loops by moving the loop end upwards. To do
172 ";loop end %0,%l1"
176 ;; loop body. We make it a branch insn, so it stays at the end of the
184 loop %1,%l2 ;%0%#
189 ; operand 0 is the loop count pseudo register
190 ; operand 1 is the number of loop iterations or 0 if it is unknown
191 ; operand 2 is the maximum number of loop iterations
[all …]
/openbsd/sbin/iked/
H A Dsntrup761.c526 int i,loop,delta; in R3_recip() local
539 for (loop = 0;loop < 2*p-1;++loop) { in R3_recip()
611 int i,loop,delta; in Rq_recip3() local
626 for (loop = 0;loop < 2*p-1;++loop) { in Rq_recip3()
/openbsd/usr.bin/ssh/
H A Dsntrup761.c526 int i,loop,delta; in R3_recip() local
539 for (loop = 0;loop < 2*p-1;++loop) { in R3_recip()
611 int i,loop,delta; in Rq_recip3() local
626 for (loop = 0;loop < 2*p-1;++loop) { in Rq_recip3()
/openbsd/gnu/usr.bin/binutils/gdb/doc/
H A DLRS9 and in a register during a loop and in a different register during
10 another loop.
179 loop where "a" resides in register "r5".
183 which describes it as living in register "r5" in the loop.
/openbsd/gnu/llvm/llvm/include/llvm/Frontend/OpenACC/
H A DACC.td383 def ACC_Loop : Directive<"loop"> {
528 def ACC_KernelsLoop : Directive<"kernels loop"> {
565 def ACC_ParallelLoop : Directive<"parallel loop"> {
603 def ACC_SerialLoop : Directive<"serial loop"> {
/openbsd/usr.sbin/ifstated/
H A Difstated.c384 goto loop; in check_external_status()
387 goto loop; in check_external_status()
396 goto loop; in check_external_status()
407 loop: in check_external_status()
/openbsd/sbin/shutdown/
H A Dshutdown.c99 void __dead loop(void);
252 loop(); in main()
257 loop(void) in loop() function
/openbsd/sys/arch/hppa/stand/boot/
H A Dsrt0.S119 loop addib,>,n -16,%r21,loop ; Decrement by cache line size (16). label
/openbsd/gnu/lib/libstdc++/libstdc++/docs/html/21_strings/
H A Dstringtok_h.txt13 * in an invocation loop like strtok() requires.
97 // set up for next loop
/openbsd/gnu/gcc/libstdc++-v3/docs/html/21_strings/
H A Dstringtok_h.txt13 * in an invocation loop like strtok() requires.
97 // set up for next loop

12345678910>>...41