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

1 2 3 4 5 6 7 8 91011>>

  /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/llvm/test/MC/Sparc/
sparcv8-instructions.s 3 ! CHECK: fcmps %f0, %f4 ! encoding: [0x81,0xa8,0x0a,0x24]
4 ! CHECK: fcmpd %f0, %f4 ! encoding: [0x81,0xa8,0x0a,0x44]
5 ! CHECK: fcmpq %f0, %f4 ! encoding: [0x81,0xa8,0x0a,0x64]
6 fcmps %f0, %f4
7 fcmpd %f0, %f4
8 fcmpq %f0, %f4
10 ! CHECK: fcmpes %f0, %f4 ! encoding: [0x81,0xa8,0x0a,0xa4]
11 ! CHECK: fcmped %f0, %f4 ! encoding: [0x81,0xa8,0x0a,0xc4]
12 ! CHECK: fcmpeq %f0, %f4 ! encoding: [0x81,0xa8,0x0a,0xe4]
13 fcmpes %f0, %f4
    [all...]
sparc-fp-instructions.s 3 ! CHECK: fitos %f0, %f4 ! encoding: [0x89,0xa0,0x18,0x80]
4 ! CHECK: fitod %f0, %f4 ! encoding: [0x89,0xa0,0x19,0x00]
5 ! CHECK: fitoq %f0, %f4 ! encoding: [0x89,0xa0,0x19,0x80]
6 fitos %f0, %f4
7 fitod %f0, %f4
8 fitoq %f0, %f4
10 ! CHECK: fstoi %f0, %f4 ! encoding: [0x89,0xa0,0x1a,0x20]
11 ! CHECK: fdtoi %f0, %f4 ! encoding: [0x89,0xa0,0x1a,0x40]
12 ! CHECK: fqtoi %f0, %f4 ! encoding: [0x89,0xa0,0x1a,0x60]
13 fstoi %f0, %f4
    [all...]
  /external/clang/test/ASTMerge/Inputs/
function1.c 5 void f4(int, int);
function2.c 6 static void f4(float, float);
  /external/clang/test/CodeGen/
ppc64-extend.c 13 unsigned int f4(void) { return 0; } function
14 // CHECK: define zeroext i32 @f4() [[NUW]]
windows-struct-abi.c 28 struct f4 { struct
35 struct f4 return_f4(void) { while (1); }
37 // CHECK: define void @return_f4(%struct.f4* noalias sret %agg.result)
39 void receive_f4(struct f4 a0) { }
41 // CHECK: define void @receive_f4(%struct.f4* byval align 4 %a0)
inline2.c 45 // CHECK-GNU89-LABEL: define available_externally i32 @f4()
46 // CHECK-C99-LABEL: define i32 @f4()
47 int f4(void);
48 extern inline int f4(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
microsoft-call-conv-x64.c 5 void __fastcall f4(void) { function
6 // CHECK-LABEL: define void @f4()
19 void (__fastcall *pf4)(void) = f4;
23 f4(); f5();
24 // CHECK: call void @f4()
x86_64-arguments-win32.c 15 // CHECK-LABEL: define void @f4(i16 %a)
16 void f4(unsigned short a) {} function
  /external/valgrind/none/tests/mips64/
move_instructions.c 210 TEST3("movf.s $f4, $f6, $fcc0", f4, f6, 1, 0);
211 TEST3("movf.s $f4, $f6, $fcc0", f4, f6, 1, 8);
212 TEST3("movf.s $f4, $f6, $fcc0", f4, f6, 1, 16);
213 TEST3("movf.s $f4, $f6, $fcc0", f4, f6, 1, 24);
214 TEST3("movf.s $f4, $f6, $fcc0", f4, f6, 1, 32
    [all...]
  /external/clang/test/CodeGenCXX/
reinterpret-cast.cpp 16 void f4(int*&);
18 f4(reinterpret_cast<int*&>(u));
call-with-static-chain.cpp 17 A &f4();
36 // CHECK32: call dereferenceable(8) %struct.A* bitcast (%struct.A* ()* @f4 to %struct.A* (i8*)*)(i8* nest bitcast (%struct.A* ()* @f4 to i8*))
37 // CHECK64: call dereferenceable(16) %struct.A* bitcast (%struct.A* ()* @f4 to %struct.A* (i8*)*)(i8* nest bitcast (%struct.A* ()* @f4 to i8*))
38 __builtin_call_with_static_chain(f4(), f4); local
int64_uint64.cpp 23 void f4(uint64_t *ptr) {} function
  /external/clang/test/Sema/
pragma-pack-5.c 27 char f4; member in struct:s2
35 char f4; member in struct:s3
38 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
sentinel-attribute.c 12 void f4(int a, ...) __attribute__ ((sentinel(1, 2, 3))); //expected-error{{'sentinel' attribute takes no more than 2 arguments}}
13 void f4(int a, ...) __attribute__ ((sentinel(-1))); //expected-error{{parameter 1 less than zero}}
14 void f4(int a, ...) __attribute__ ((sentinel(0, 2))); // expected-error{{parameter 2 not 0 or 1}}
arg-duplicate.c 12 void f4(void) { 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'}}
  /external/valgrind/none/tests/mips32/
MoveIns.c 195 "ldc1 $f4, 8($t0)\n\t" \
200 "mfc1 %1, $f4\n\t" \
201 "mfhc1 %2, $f4\n\t" \
221 "ldc1 $f4, 8($t0)\n\t" \
226 "mfc1 %1, $f4\n\t" \
287 TESTINSNMOVE("mfc1 $t5, $f4", 16, f4, t5);
316 TESTINSNMOVEt("mtc1 $t5, $f4", 16, f4, t5);
345 TESTINSNMOVE1s("mov.s $f3, $f4", 16, f3, f4)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
greyscale.rs 23 float4 f4 = rsUnpackColor8888(v_in);
25 float3 mono = dot(f4.rgb, gMonoMult);
30 float4 f4 = convert_float4(v_in);
31 return (uchar)dot(f4.rgb, gMonoMult);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
greyscale.rs 23 float4 f4 = rsUnpackColor8888(v_in);
25 float3 mono = dot(f4.rgb, gMonoMult);
30 float4 f4 = convert_float4(v_in);
31 return (uchar)dot(f4.rgb, gMonoMult);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
greyscale.rs 23 float4 f4 = rsUnpackColor8888(v_in);
25 float3 mono = dot(f4.rgb, gMonoMult);
30 float4 f4 = convert_float4(v_in);
31 return (uchar)dot(f4.rgb, gMonoMult);
  /external/clang/test/SemaCXX/
function-pointer-arguments.cpp 7 int f4(const int&, int);
17 int(*g8)(const int&, int) = f4;
43 int (*g10)(int&, char) = f4;
  /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);

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 91011>>