Searched refs:f4 (Results 1 - 25 of 183) sorted by relevance

12345678

/external/clang/test/PCH/
H A Dchain-ext_vector.c9 int test(float4 f4) { argument
10 return f4.xy; // expected-error{{float2}}
H A Dext_vector.c8 int test(float4 f4) { argument
9 return f4.xy; // expected-error{{float2}}
/external/v8/test/mjsunit/
H A Dbinary-operation-overwrite.js32 function f4() { return (1 || 2) + 3; } function
36 assertTrue(f4() === f4());
/external/clang/test/ASTMerge/Inputs/
H A Dfunction1.c5 void f4(int, int);
H A Dfunction2.c6 static void f4(float, float);
/external/clang/test/CodeGenCXX/
H A Dreinterpret-cast.cpp14 void f4(int*&);
16 f4(reinterpret_cast<int*&>(u));
/external/clang/test/CodeGen/
H A Dinline2.c42 // CHECK-GNU89: define available_externally i32 @f4()
43 // CHECK-C99: define i32 @f4()
44 int f4(void);
45 extern inline int f4(void) { return 0; } function
60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmicrosoft-call-conv.c6 void __fastcall f4(void) { function
7 // CHECK: define x86_fastcallcc void @f4()
26 void (__fastcall *pf4)(void) = f4;
31 f4(); f5(); f6();
32 // CHECK: call x86_fastcallcc void @f4()
H A Dstruct-passing.c14 void __attribute__((const)) f4(T1 a);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
23 // CHECK: declare void @f4({{.*}} byval align 4)
H A Dstdcall-fastcall.c6 void __attribute__((fastcall)) f4(void) { function
7 // CHECK: define x86_fastcallcc void @f4()
26 void (__attribute__((fastcall)) *pf4)(void) = f4;
31 f4(); f5(); f6();
32 // CHECK: call x86_fastcallcc void @f4()
H A Dfunctions.c39 void f4() {} function
40 void f5() { f4(42); } //expected-warning {{too many arguments}}
H A Dc-strings.c29 void f4() { function
/external/clang/test/Sema/
H A Dpragma-pack-5.c26 char f4; member in struct:s2
34 char f4; member in struct:s3
37 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
H A Dsentinel-attribute.c8 void f4(int a, ...) __attribute__ ((sentinel(1, 2, 3))); //expected-error{{attribute takes no more than 2 arguments}}
9 void f4(int a, ...) __attribute__ ((sentinel(-1))); //expected-error{{parameter 1 less than zero}}
10 void f4(int a, ...) __attribute__ ((sentinel(0, 2))); // expected-error{{parameter 2 not 0 or 1}}
H A Darg-duplicate.c12 void f4(void) { function
H A Dattr-noreturn.c25 void f4() __attribute__((noreturn));
26 void f4() { function
27 return; // expected-error {{function 'f4' declared 'noreturn' should not return}}
H A Dbuiltin-object-size.c24 void f4(const char *fmt, ...) { function
H A Dfloating-point-compare.c15 int f4(float x) { function
/external/clang/test/SemaTemplate/
H A Dtemplate-id-expr.cpp59 static int f4(int);
61 static void f4(U);
76 x = Y0::f4(0);
77 x = Y0::f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}}
78 x = Y0::template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}}
80 x = this->f4(0);
81 x = this->f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}}
82 x = this->template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}}
/external/oprofile/libutil++/tests/
H A Dglob_filter_tests.cpp47 glob_filter f4("foo", "foo");
48 check(f4, "foo", false);
49 check(f4, "foo1", false);
50 check(f4, "foo/foo", false);
/external/v8/test/mjsunit/compiler/
H A Dvariables.js55 function f4(x) { function
59 assertEquals(4, f4(4));
/external/libffi/testsuite/libffi.call/
H A Dstruct8.c14 float f4; member in struct:__anon6745
22 ts.f4 += 1;
59 ts8_arg.f4 = -55.5f;
64 printf ("%g\n", ts8_arg.f4);
71 printf ("%g\n", ts8_result->f4);
76 CHECK(ts8_result->f4 == -55.5f + 1);
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp13.cpp47 void f4(T ...args); // expected-error{{type 'T' of function parameter pack does not contain any unexpanded parameter packs}}
/external/clang/test/Parser/
H A Dcxx-stmt.cpp49 void f4() { function
/external/clang/test/SemaCXX/
H A Dfunction-type-qual.cpp14 static cfn f4; // expected-error {{static member function of type 'cfn' (aka 'void () const') cannot have 'const' qualifier}} member in class:C

Completed in 553 milliseconds

12345678