代码搜索:Loop

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

代码结果 10,000
www.eeworm.com/read/347503/3170793

s loop_align.s

l4: loop a5,l5 _mov.n a4,a5 l5: _nop.n
www.eeworm.com/read/344610/3207067

c ppp_loop.c

/* * FILENAME: ppp_loop.c * * Copyright 1997 - 2001 By InterNiche Technologies Inc. All rights reserved * * Loopback line driver for InterNiche PPP * * MODULE: PPP * * ROUTINES: pl_c
www.eeworm.com/read/344610/3207068

h ppp_loop.h

/* * FILENAME: ppp_loop.h * * Copyright 1997- 2000 By InterNiche Technologies Inc. All rights reserved * * ppp_loop.h Loopback line driver definitions * * MODULE: PPP * * * PORTAB
www.eeworm.com/read/342664/3229536

c,v loop.c,v

head 1.1; branch ; access ; symbols ; locks ; comment @ * @; 1.1 date 94.01.17.14.59.29; author rstevens; state Exp; branches ; next ; desc @@ 1.1 log @08Dec93 version fo
www.eeworm.com/read/340665/3272753

c loop1.c

// Verify that loop optimization takes into account the exception edge // and does not increment I before the call. // { dg-do run } // { dg-options "-O2" } extern "C" void abort(); static void bar(c
www.eeworm.com/read/340665/3273672

c loop2.c

// Build don't link: // Special g++ Options: -O class foo { public: operator const char*() const { return a; } char *a; }; class bar { public: ~bar(); void operator++(int); bool b() const;
www.eeworm.com/read/340665/3273941

c loop1.c

// Test for bad loop optimization of goto fixups. // Special g++ Options: -O2 typedef bool (*ftype) (); int c, d; struct A { A() { ++c; } A(const A&) { ++c; } ~A() { ++d; } }; void f (ftype f
www.eeworm.com/read/340665/3278617

c loop-8.c

double a[3] = { 0.0, 1.0, 2.0 }; void bar (int x, double *y) { if (x || *y != 1.0) abort (); } int main () { double c; int d; for (d = 0; d < 3; d++) { c = a[d]; if (c > 0.0) g
www.eeworm.com/read/340665/3278678

c loop-1.c

main () { int i, j, k[3]; j = 0; for (i=0; i < 3; i++) { k[i] = j++; } for (i=2; i >= 0; i--) { if (k[i] != i) abort (); } exit (0); }
www.eeworm.com/read/340665/3278721

c loop-9.c

/* Source: Neil Booth, from PR # 115. */ int false() { return 0; } extern void abort (void); int main (int argc,char *argv[]) { int count = 0; while (false() || count < -123) ++count;