HomeSort by relevance Sort by last modified time
    Searched refs:f4 (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/PCH/
chain-ext_vector.c 9 int test(float4 f4) {
10 return f4.xy; // expected-error{{float2}}
ext_vector.c 8 int test(float4 f4) {
9 return f4.xy; // expected-error{{float2}}
  /external/clang/test/ASTMerge/Inputs/
function1.c 5 void f4(int, int);
function2.c 6 static void f4(float, float);
  /external/clang/test/CodeGenCXX/
reinterpret-cast.cpp 14 void f4(int*&);
16 f4(reinterpret_cast<int*&>(u));
  /external/clang/test/CodeGen/
inline2.c 42 // 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()
microsoft-call-conv.c 6 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()
struct-passing.c 14 void __attribute__((const)) f4(T1 a);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
23 // CHECK: declare void @f4({{.*}} byval align 4)
stdcall-fastcall.c 6 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()
functions.c 39 void f4() {} function
40 void f5() { f4(42); } //expected-warning {{too many arguments}}
c-strings.c 29 void f4() { function
  /external/clang/test/Sema/
pragma-pack-5.c 26 char f4; member in struct:s2
34 char f4; member in struct:s3
37 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
sentinel-attribute.c 8 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}}
arg-duplicate.c 12 void f4(void) { function
attr-noreturn.c 25 void f4() __attribute__((noreturn));
26 void f4() { function
27 return; // expected-error {{function 'f4' declared 'noreturn' should not return}}
builtin-object-size.c 24 void f4(const char *fmt, ...) { function
floating-point-compare.c 15 int f4(float x) { function
  /external/clang/test/SemaTemplate/
template-id-expr.cpp 59 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'}}
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
mono.rs 23 float4 f4 = rsUnpackColor8888(*v_in);
25 float3 mono = dot(f4.rgb, gMonoMult);
  /external/oprofile/libutil++/tests/
glob_filter_tests.cpp 47 glob_filter f4("foo", "foo");
48 check(f4, "foo", false);
49 check(f4, "foo1", false);
50 check(f4, "foo/foo", false);
path_filter_tests.cpp 47 path_filter f4("foo", "foo");
48 check(f4, "foo", false);
49 check(f4, "foo1", false);
50 check(f4, "foo/foo", false);
string_filter_tests.cpp 40 string_filter f4("ok,ok2,", "");
41 check(f4, "ok", true);
42 check(f4, "ok2", true);
43 check(f4, "no", false);
  /external/libffi/testsuite/libffi.call/
struct8.c 14 float f4; member in struct:__anon8305
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/Parser/
cxx-stmt.cpp 49 void f4() { function
  /external/clang/test/SemaCXX/
function-type-qual.cpp 14 static cfn f4; // expected-error {{static member function of type 'cfn' (aka 'void () const') cannot have 'const' qualifier}} member in class:C

Completed in 715 milliseconds

1 2 3 4 5 6 7 8 9