/external/clang/test/CodeGen/ |
H A D | inline2.c | 29 // CHECK-GNU89: define i32 @f6() 30 // CHECK-C99: define i32 @f6() 31 inline int f6(void); 32 extern inline int f6(void) { return 0; } function 60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
|
H A D | microsoft-call-conv.c | 16 void __thiscall f6(void) { function 17 // CHECK: define x86_thiscallcc void @f6() 28 void (__thiscall *pf6)(void) = f6; 31 f4(); f5(); f6(); 34 // CHECK: call x86_thiscallcc void @f6()
|
H A D | stdcall-fastcall.c | 16 void __attribute__((thiscall)) f6(void) { function 17 // CHECK: define x86_thiscallcc void @f6() 28 void (__attribute__((thiscall)) *pf6)(void) = f6; 31 f4(); f5(); f6(); 34 // CHECK: call x86_thiscallcc void @f6()
|
H A D | functions.c | 43 static void f6(const float f, const float g) { function 46 f6(f, g); 48 // CHECK: call void @f6(float{{.*}}, float{{.*}})
|
H A D | 2007-09-28-PackedUnionMember.c | 12 unsigned short f6; member in struct:H::__anon4138::__anon4139
|
H A D | le32-arguments.c | 43 // CHECK: define void @f6(i32 %a) 44 void f6(enum my_enum a) {} function
|
/external/oprofile/libutil++/tests/ |
H A D | path_filter_tests.cpp | 59 path_filter f6(" foo,bar", "bar "); 60 check(f6, "foo", false); 61 check(f6, "foo ", false); 62 check(f6, " foo", true); 63 check(f6, "bar", true); 64 check(f6, "bar ", false); 65 check(f6, " bar", false); 66 check(f6, "foo ", false); 67 check(f6, "foo/ bar", false);
|
H A D | string_filter_tests.cpp | 54 string_filter f6(v1, v2); 55 check(f6, "", true); 56 check(f6, "ok", true);
|
/external/v8/test/mjsunit/compiler/ |
H A D | variables.js | 72 function f6(arguments) { return arguments; } function 73 assertEquals(6, f6(6));
|
/external/llvm/test/MC/Mips/ |
H A D | mips-fpu-instructions.s | 10 # CHECK: abs.s $f6, $f7 # encoding: [0x85,0x39,0x00,0x46] 12 # CHECK: add.s $f9, $f6, $f7 # encoding: [0x40,0x32,0x07,0x46] 14 # CHECK: floor.w.s $f6, $f7 # encoding: [0x8f,0x39,0x00,0x46] 16 # CHECK: ceil.w.s $f6, $f7 # encoding: [0x8e,0x39,0x00,0x46] 18 # CHECK: mul.s $f9, $f6, $f7 # encoding: [0x42,0x32,0x07,0x46] 20 # CHECK: neg.s $f6, $f7 # encoding: [0x87,0x39,0x00,0x46] 22 # CHECK: round.w.s $f6, $f7 # encoding: [0x8c,0x39,0x00,0x46] 24 # CHECK: sqrt.s $f6, $f7 # encoding: [0x84,0x39,0x00,0x46] 26 # CHECK: sub.s $f9, $f6, $f7 # encoding: [0x41,0x32,0x07,0x46] 28 # CHECK: trunc.w.s $f6, [all...] |
/external/clang/test/Sema/ |
H A D | attr-availability-ios.c | 10 void f6(int) __attribute__((availability(ios,deprecated=3.0))); 11 void f6(int) __attribute__((availability(ios,introduced=2.0))); // expected-note {{'f6' declared here}} 20 f6(0); // expected-warning{{'f6' is deprecated: first deprecated in iOS 3.0}}
|
H A D | warn-unused-function.c | 21 static void f6(); 22 static void __attribute__((used)) f6(); 23 static void f6() {}; function
|
H A D | MicrosoftCompatibility.c | 14 __declspec(noreturn) void f6( void ) { 15 return; // expected-warning {{function 'f6' declared 'noreturn' should not return}}
|
H A D | sentinel-attribute.c | 15 void f6() __attribute__((__sentinel__)); // expected-warning {{'sentinel' attribute requires named arguments}}
|
H A D | attr-unused.c | 41 int f6(int x __attribute__((__unused__))) { function
|
H A D | decl-in-prototype.c | 30 void f6(struct z {int b;} c) { // expected-warning {{declaration of 'struct z' will not be visible outside of this function}} function
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
H A D | p4.cpp | 5 friend void f6(int) { } // expected-error{{redefinition of}} \ function in struct:X1
|
/external/clang/test/CodeGenCXX/ |
H A D | visibility-inlines-hidden.cpp | 12 virtual void f6() { } function in struct:X0 24 virtual void f6() { } function in struct:X1 49 x0->X0::f6(); 61 x1->X1::f6();
|
H A D | mangle-variadic-templates.cpp | 59 template<int ...Values> int_tuple<Values...> f6() {} function 61 template int_tuple<1, 2, 3> f6();
|
H A D | vtable-available-externally.cpp | 156 virtual void f6 (); 159 void f6 (); 168 ptr->f6 ();
|
/external/clang/test/SemaCXX/ |
H A D | function-extern-c.cpp | 34 extern "C" void f6( S s );
|
/external/clang/test/SemaTemplate/ |
H A D | temp_func_order.cpp | 77 int &f6(T&, U&); 80 float &f6(const T&, U&); 83 int &ir = f6(i, i); 84 float &fr = f6(ic, ic);
|
/external/libffi/testsuite/libffi.call/ |
H A D | many.c | 17 float f6, 29 (double) f6, (double) f7, (double) f8, (double) f9, (double) f10, 33 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13); 12 many(float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f13) argument
|
/external/v8/test/mjsunit/ |
H A D | arguments.js | 149 function f6(x, y) { function 155 assertArrayEquals([0, void 0, void 0, void 0], f6()); 156 assertArrayEquals([1, "x", void 0, void 0], f6(1)); 157 assertArrayEquals([2, "x", "y", void 0], f6(9, 17)); 158 assertArrayEquals([3, "x", "y", 7], f6(3, 5, 7)); 159 assertArrayEquals([4, "x", "y", "c"], f6("a", "b", "c", "d"));
|
/external/llvm/test/MC/MachO/ |
H A D | darwin-x86_64-reloc.s | 72 f6: label 79 movl f6(%rip), %eax 84 .quad f6 361 // CHECK: ('_string', 'f6')
|