/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
H A D | 980523-1.c | 6 void foo1(int a, char *b, int c) in foo1() function 25 foo1(1, "a", foo2(1)); in main() 26 foo1(bar1, "a", foo2(1)); in main() 32 foo1(1, "n", foo2(1)); in main() 33 foo1(1, "o", foo2(1)); in main() 34 foo1(1, "p", foo2(1)); in main() 35 foo1(bar1, "a", foo2(1)); in main() 39 foo1(1, "q", foo2(1)); in main() 40 bar4 = "c"; foo1(1, "c", foo2(1)); in main() 41 bar4 = "d"; foo1(1, "d", foo2(1)); in main() [all …]
|
H A D | wtr-union-init-2.c | 7 union foo1 union 25 static union foo1 f1 = {0}; in testfunc() 27 …static union foo1 f3 = {1}; /* { dg-warning "traditional C rejects initialization of unions" "init… in testfunc() 29 static union foo1 f5 = {0.0}; in testfunc() 31 …static union foo1 f7 = {1.0}; /* { dg-warning "traditional C rejects initialization of unions" "in… in testfunc() 37 static union foo1 b1 = {0}; in testfunc() 39 static union foo1 b3 = {1}; in testfunc() 41 static union foo1 b5 = {0.0}; in testfunc() 43 static union foo1 b7 = {1.0}; in testfunc()
|
H A D | dll-3.c | 6 __declspec (dllimport) int foo1 (); 7 __declspec (dllexport) int foo1 (); 12 __declspec (dllexport) int foo1 () { return foo2 (); } in foo1() function 13 __declspec (dllexport) int foo2 () { return foo1 (); } in foo2()
|
H A D | dll-4.c | 4 __declspec (dllimport) int foo1; 5 int foo1; variable 10 int f () { return foo1 + foo2; } in f()
|
H A D | typeof-1.c | 5 extern int foo1; 6 extern int foo1 __asm ("bar1"); 7 int foo1 = 1; variable
|
H A D | wtr-label-1.c | 7 enum foo1 { a }; enum 19 foo1: 41 foo1:
|
H A D | simd-1.c | 18 int foo1 __attribute__((mode(SI))); variable 47 …foo1 = (typeof (foo1)) foo2; /* { dg-error "can't convert between vector values of different size"… in hanneke()
|
H A D | 20040127-1.c | 10 extern int foo1(); 17 foo1(); in foo()
|
/openbsd/gnu/usr.bin/perl/t/cmd/ |
H A D | switch.t | 5 sub foo1 { 20 print foo1(0) == 20 ? "ok 1\n" : "not ok 1\n"; 21 print foo1(1) == 1 ? "ok 2\n" : "not ok 2\n"; 22 print foo1(2) == 2 ? "ok 3\n" : "not ok 3\n"; 23 print foo1(3) == 3 ? "ok 4\n" : "not ok 4\n"; 24 print foo1(4) == 4 ? "ok 5\n" : "not ok 5\n"; 25 print foo1(5) == 20 ? "ok 6\n" : "not ok 6\n";
|
/openbsd/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-not/ |
H A D | not-calls-diff.txt | 2 # RUN: echo 'foo' > %t.foo1 11 # RUN: diff %t.foo0 %t.foo1 12 # RUN: not not diff %t.foo0 %t.foo1 13 # RUN: not not not not diff %t.foo0 %t.foo1 16 # RUN: not diff %t.foo0 %t.foo1
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
H A D | dll-4.C | 7 __declspec (dllimport) int foo1 (); 8 __declspec (dllexport) int foo1 (); 13 __declspec (dllexport) int foo1 () { return foo2 (); } in foo1() function 14 __declspec (dllexport) int foo2 () { return foo1 (); } in foo2()
|
H A D | dll-5.C | 7 __declspec (dllimport) int foo1; 8 int foo1; variable 13 int f () { return foo1 + foo2; } in f()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/ |
H A D | const3.C | 18 int foo1(void *, const char *); 23 foo2(foo1(my_out, "type = "), type); in A() 24 foo2(foo1(my_out, "mType = "), mType); in A() 33 int A::foo1(void *ios, const char *str) { } in foo1() function
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
H A D | partial2.C | 3 template<class T> struct foo1 {}; struct 4 template<class T, int n> struct foo1<T[n]>; 5 foo1<char> bar1; 6 foo1<char[10]> baz1; // ERROR - incomplete type
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
H A D | structs.c | 34 struct struct1 foo1 = {'1'}, L1; variable 54 return foo1; in fun1() 106 void Fun1(struct struct1 foo1) in Fun1() argument 108 void Fun1(foo1) in Fun1() 109 struct struct1 foo1; in Fun1() 112 L1 = foo1; 245 foo1.a = foo2.a = foo3.a = foo4.a = foo5.a = foo6.a = foo7.a = foo8.a = in main() 248 Fun1(foo1); in main()
|
H A D | 20020530-1.c | 3 extern unsigned char foo1 (void); 8 unsigned char q = foo1 (); in bar1()
|
H A D | 20020926-1.c | 7 extern int foo1(int, int); 16 i3 = foo1(i1, gi); in bar()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
H A D | enum8.C | 3 class foo1 17 enum foo1::foo1_enum Enum; 24 foo1::foo1_enum Enum;
|
H A D | visibility8.C | 10 class foo1 : private foo 12 class foo2 : public foo1
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/ext/ |
H A D | typeof2.C | 6 extern int foo1; 7 extern int foo1 __asm ("bar1"); 8 int foo1 = 1; variable
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.misc-tests/ |
H A D | arm-isr.c | 25 int foo1 (int a, int b, int c, int d, int e, int f, int g, int h) __attribute__ ((interrupt ("IRQ")… 28 foo1 (int a, int b, int c, int d, int e, int f, int g, int h) in foo1() function 44 if (foo1 (1, 2, 3, 4, 5, 6, 7, 8) != 32) in main()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/ |
H A D | delay.c | 4 goto foo1; in foo() 7 foo1: in foo()
|
H A D | mtst.c | 8 goto foo1; in foo() 13 foo1: in foo()
|
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.hp/gdb.objdbg/objdbg02/ |
H A D | x1.cc | 3 extern void foo1(); 13 foo1(); in main()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
H A D | bool7.C | 12 int foo1 (); 17 B::foo1 () in foo1() function
|