代码搜索:Scan

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

代码结果 10,000
www.eeworm.com/read/162614/5529263

c asm5.c

/* Test for string translation. */ /* { dg-do compile } { dg-require-iconv "IBM1047" } { dg-final { scan-assembler-not "translate" } } */ void foo (void) { asm ("xx" : : "r"("translate") : "c
www.eeworm.com/read/162614/5529270

c asm6.c

/* Test for string translation. */ /* { dg-do compile } { dg-require-iconv "IBM1047" } { dg-final { scan-assembler "foo" } } */ int main() { unsigned long int *ptr; ptr = ((unsigned long i
www.eeworm.com/read/162614/5529271

c string.c

/* Simple character translation test. */ /* { dg-do compile } { dg-require-iconv "IBM1047" } { dg-final { scan-assembler-not "string foobar" } } */ char *foo = "string foobar";
www.eeworm.com/read/162614/5529273

c function.c

/* { dg-do compile } { dg-require-iconv "IBM1047" } { dg-final { scan-assembler-not "\"foobar\"" } } */ const char *str; void foobar (void) { str = __FUNCTION__; }
www.eeworm.com/read/162614/5529361

c pr15784-1.c

/* { dg-do compile } */ /* { dg-options "-fdump-tree-gimple" } */ /* Test for folding abs(x) where appropriate. */ #define abs(x) x > 0 ? x : -x extern double fabs (double); int a (int x) { return
www.eeworm.com/read/162614/5529459

c asm-4.c

/* { dg-do compile } */ /* { dg-options "" } */ int main() { int x, y, z; asm volatile ("test0 X%0Y%[arg]Z" : [arg] "=g" (x)); asm volatile ("test1 X%[out]Y%[in]Z" : [out] "=g" (y) : [in] "0"(
www.eeworm.com/read/162614/5529472

c pr21255-3.c

/* { dg-do compile { target "sh*-*-*" } } */ /* { dg-options "-O2 -fomit-frame-pointer" } */ /* { dg-final { scan-assembler "mov #?0,r.*; mov #?20,r" } } */ /* { dg-final { scan-assembler "mov #?10771
www.eeworm.com/read/162614/5530241

c builtins-47.c

/* { dg-do run } */ /* { dg-options "-ffast-math -fdump-tree-gimple" } */ extern double sqrt (double); extern double pow (double, double); extern void abort (void); int main () { double x = -1.0;
www.eeworm.com/read/162614/5530278

c var2.c

/* PR 23190 */ /* { dg-do compile } /* { dg-options "-O2 -gdwarf-2 -dA" } */ /* { dg-final { scan-assembler "DW_OP_addr\[\\n\\r\]+\[^\\n\\r\]+foo" } } */ /* { dg-final { scan-assembler "DW_OP_addr\[\\
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