代码搜索:Loop
找到约 10,000 项符合「Loop」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5527574
c loop-10.c
/* Reduced from PR optimization/5076, PR optimization/2847 */
static int count = 0;
static void
inc (void)
{
count++;
}
int
main (void)
{
int iNbr = 1;
int test = 0;
while (test == 0)
{
www.eeworm.com/read/162614/5527607
c loop-3.c
#include
int n = 0;
g (i)
{
n++;
}
f (m)
{
int i;
i = m;
do
{
g (i * INT_MAX / 2);
}
while (--i > 0);
}
main ()
{
f (4);
if (n != 4)
abort ();
exit (0)
www.eeworm.com/read/162614/5527697
c loop386.c
foo (a)
{
do
{
puts ("a");
a -= 1;
}
while (a != 0);
}
main ()
{
int p[100];
printf ("%d\n", foo (3));
}
www.eeworm.com/read/162614/5527712
c loop-1.c
foo (a)
{
while ((a -= 1) != -1)
bar (270000);
putchar ('\n');
}
main ()
{
foo (5);
}
www.eeworm.com/read/162614/5527925
c test-loop.c
main ()
{
int i;
for (i = 100; i >= -1; i--)
foo ();
}
www.eeworm.com/read/162614/5528982
c loop-1.c
/* Copyright (C) 2000 Free Software Foundation.
Simplified from gcc/fold-const.c
by Alexandre Oliva */
/* { dg-do compile } */
void
mul_double ()
{
int i, j, *p
www.eeworm.com/read/162614/5529105
c loop-5.c
/* PR c/16180 */
/* { dg-options "-O2" } */
extern int b;
int foo (int a)
{
if (a)
{
b = 0;
for(;;)
goto L;
}
L:
for(;;)
return 0;
}
www.eeworm.com/read/162614/5529209
c loop-6.c
/* PR optimization/18577 */
/* Origin: Falk Hueffner */
/* { dg-do run } */
/* { dg-options "-O2 -funroll-all-loops" } */
static float tfcos12[3];
__attribute__((noinline)) double
www.eeworm.com/read/162614/5529256
c loop-4.c
/* PR optimization/11841 */
/* Originator: Andrey Panov */
/* Reduced testcase by Volker Reichelt */
/* Verify that the (old) loop unroller