Home
last modified time | relevance | path

Searched refs:vf2 (Results 1 – 17 of 17) sorted by relevance

/external/clang/test/CodeGen/
DNontemporal.cpp14 float __attribute__((vector_size(16))) vf1, vf2; variable
32 __builtin_nontemporal_store(vf1, &vf2); // CHECK: store <4 x float>{{.*}}align 16, !nontemporal in test_all_sizes()
46 vf2 = __builtin_nontemporal_load(&vf1); // CHECK: load <4 x float>{{.*}}align 16, !nontemporal in test_all_sizes()
Dbuiltins-ppc-altivec.c8974 vector float vf2 = (vector float)(2.0); in test7() local
8975 res_i = (vf1 == vf2); in test7()
8979 res_i = (vf1 != vf2); in test7()
8983 res_i = (vf1 < vf2); in test7()
8987 res_i = (vf1 > vf2); in test7()
8991 res_i = (vf1 <= vf2); in test7()
8995 res_i = (vf1 >= vf2); in test7()
/external/eigen/unsupported/test/
Dopenglsupport.cpp181 Vector2f vf2; vf2.setRandom(); Vector3f vf23; vf23 << vf2, 0; in test_openglsupport() local
182 VERIFY_MATRIX(glTranslate(vf2), Projective3f(Translation3f(vf23)).matrix()); in test_openglsupport()
200 Vector2f vf2; vf2.setRandom(); Vector3f vf23; vf23 << vf2, 1; in test_openglsupport() local
201 VERIFY_MATRIX(glScale(vf2), Projective3f(Scaling(vf23)).matrix()); in test_openglsupport()
/external/clang/test/CodeGenCXX/
Dmember-function-pointer-calls.cpp5 virtual int vf2() { return 2; } in vf2() function
27 return f(&a, &A::vf2); in g2()
Dmember-function-pointers.cpp14 struct A { int a; void f(); virtual void vf1(); virtual void vf2(); };
32 void (A::*pa4)() = &A::vf2;
73 void (A::*pa4)() = &A::vf2; in f2()
/external/llvm/test/CodeGen/PowerPC/
Dvsx-minmax.ll10 @vf2 = common global <4 x float> zeroinitializer, align 16
34 store <4 x float> %7, <4 x float>* @vf2, align 16
85 ;vector float vf1, vf2, vf3, vf4;
92 ; vf2 = vec_vmaxfp(vf, vf);
/external/llvm/test/Transforms/WholeProgramDevirt/
Dvcp-no-this.ll7 @vt2 = global [1 x i8*] [i8* bitcast (i32 ()* @vf2 to i8*)], !type !0
13 define i32 @vf2() readnone {
Duniform-retval.ll7 @vt2 = constant [1 x i8*] [i8* bitcast (i32 (i8*)* @vf2 to i8*)], !type !0
13 define i32 @vf2(i8* %this) readnone {
Dvcp-too-wide-ints.ll7 @vt2 = global [1 x i8*] [i8* bitcast (i128 (i8*, i128)* @vf2 to i8*)], !type !0
13 define i128 @vf2(i8* %this, i128 %arg) readnone {
Dvcp-uses-this.ll7 @vt2 = global [1 x i8*] [i8* bitcast (i32 (i8*)* @vf2 to i8*)], !type !0
14 define i32 @vf2(i8* %this) readnone {
Dvcp-accesses-memory.ll7 @vt2 = global [1 x i8*] [i8* bitcast (i32 (i8*, i32)* @vf2 to i8*)], !type !0
13 define i32 @vf2(i8* %this, i32 %arg) {
Dvcp-non-constant-arg.ll7 @vt2 = global [1 x i8*] [i8* bitcast (i32 (i8*, i32)* @vf2 to i8*)], !type !0
13 define i32 @vf2(i8* %this, i32 %arg) readnone {
Duniform-retval-invoke.ll7 @vt2 = constant [1 x i8*] [i8* bitcast (i32 (i8*)* @vf2 to i8*)], !type !0
13 define i32 @vf2(i8* %this) readnone {
Dconstant-arg.ll8 …x i8] c"\00\00\00\00\00\00\00\02", [1 x i8*] [i8* bitcast (i1 (i8*, i32)* @vf2 to i8*)], [0 x i8] …
13 @vt2 = constant [1 x i8*] [i8* bitcast (i1 (i8*, i32)* @vf2 to i8*)], !type !0
23 define i1 @vf2(i8* %this, i32 %arg) readnone {
Dexpand-check.ll10 @vt2 = constant [1 x i8*] [i8* bitcast (void (i8*)* @vf2 to i8*)], !type !0
16 define void @vf2(i8* %this) {
Dvcp-type-mismatch.ll7 @vt2 = global [1 x i8*] [i8* bitcast (i32 (i8*, i32)* @vf2 to i8*)], !type !0
13 define i32 @vf2(i8* %this, i32 %arg) readnone {
/external/clang/test/Parser/
Dcxx-class.cpp33 virtual int vf2() = 00; // expected-error {{does not look like a pure-specifier}}