代码搜索:Loop

找到约 10,000 项符合「Loop」的源代码

代码结果 10,000
www.eeworm.com/read/265946/4279366

xpm button-loop.xpm

/* XPM */ static char * button_loop_xpm[] = { "24 24 8 1", " c None", ". c #030303", "+ c #020202", "@ c #000000", "# c #010101", "$ c #060606", "% c #040404", "& c #050505", "
www.eeworm.com/read/162614/5530124

c loop-2.c

/* PR optimization/10171 */ /* Bug: unroll_loop misoptimized the function so that we got 0 iterations of the loop rather than the correct 1. */ /* { dg-do run } */ extern void abort (void); exter
www.eeworm.com/read/162614/5530321

c loop-8.c

/* A test for strength reduction of ivs with nonconstant step. */ /* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-vars" } */ int bar (void); int a[100]; void xxx (void) { int iter, ste
www.eeworm.com/read/162614/5530355

c loop-1.c

/* { dg-do compile } */ /* { dg-options "-O1 -ftree-loop-ivcanon -funroll-loops -fdump-tree-ivcanon-details -fdump-tree-cunroll-details -fdump-tree-vars" } */ /* On 31-bit S/390 the function address
www.eeworm.com/read/162614/5530373

c loop-9.c

/* Without TARGET_MEM_REFs, dom creates code like i1 = 4 * i; *(p + i1) = i; *(p + i1 + 4) = i causing us to have unnecessary multiplication by 4 in the result. */ /* { dg-do
www.eeworm.com/read/162614/5530378

c loop-5.c

/* A test for induction variable merging. */ /* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-vars" } */ void foo(long); void xxx(void) { long iter, jter; for (iter = 0, jter = 2; ite
www.eeworm.com/read/162614/5530403

c loop-6.c

/* { dg-do compile } */ /* { dg-options "-O1 -funswitch-loops -fdump-tree-unswitch-details -fdump-tree-vars" } */ int ch; int a[100]; void xxx(void) { int i; for (i = 0; i < 100; i++) {
www.eeworm.com/read/162614/5530414

c loop-4.c

/* A test for strength reduction and induction variable elimination. */ /* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-vars" } */ /* Size of this structure should be sufficiently weird so
www.eeworm.com/read/162614/5530420

c loop-14.c

/* A test for final value replacement. */ /* { dg-options "-O2 -fdump-tree-vars" } */ int foo(void); int bla(void) { int i, j = foo (); for (i = 0; i < 100; i++, j++) foo (); /* Should
www.eeworm.com/read/162614/5530446

c loop-11.c

/* A test for final value replacement and higher-order ivs, see PR 22442. */ /* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-vars" } */ void bar (unsigned); void foo (void) { unsigne