Searched refs:V3 (Results 1 - 25 of 61) sorted by relevance

123

/external/eigen/test/
H A Dsmallvectors.cpp16 typedef Matrix<Scalar, 3, 1> V3; typedef
24 V3 v3(x1, x2, x3);
38 VERIFY_RAISES_ASSERT(V3(2, 1))
39 VERIFY_RAISES_ASSERT(V3(3, 2))
40 VERIFY_RAISES_ASSERT(V3(Scalar(3), 1))
41 VERIFY_RAISES_ASSERT(V3(3, Scalar(1)))
42 VERIFY_RAISES_ASSERT(V3(Scalar(3), Scalar(1)))
43 VERIFY_RAISES_ASSERT(V3(Scalar(123), Scalar(123)))
/external/clang/test/CodeGenCXX/
H A Dvtt-layout.cpp32 class V3 {virtual void g(); }; class in namespace:Test3
34 class C2 : public virtual V3, virtual V2 { int i; };
51 class V3 {virtual void g(); }; class in namespace:Test4
53 class C2 : public virtual V3, virtual V2 { int i; };
H A Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp25 struct V3 : Z, V2 { struct in inherits:Z,V2
79 struct B : virtual V3 {
80 // CHECK-LABEL: VFTable for 'Z' in 'V3' in 'simple::B' (2 entries).
88 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::B' (2 entries).
162 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::B' in 'simple::D' (2 entries).
175 struct E : V3 {
180 // CHECK-LABEL: VFTable for 'Z' in 'V3' in 'simple::E' in 'simple::F' (2 entries).
186 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::E' in 'simple::F' (2 entries).
202 // CHECK-LABEL: VFTable for 'Z' in 'V3' in 'simple::E' in 'simple::F' in 'simple::G' (2 entries).
208 // CHECK-LABEL: VFTable for 'V2' in 'V3' i
[all...]
H A Dvtable-layout.cpp264 struct V3 : virtual R3 { int r3; }; struct in namespace:Test4
271 // CHECK-10-NEXT: 2 | Test4::V3 *Test4::E::f()
273 // CHECK-10-NEXT: 3 | Test4::V3 *Test4::E::f()
276 // CHECK-10-NEXT: 1 | Test4::V3 *Test4::E::f()
278 virtual V3 *f();
280 V3 *E::f() { return 0;}
/external/selinux/scripts/
H A DLindent6 V3=`echo $RES | cut -d' ' -f3 | cut -d'.' -f3`
13 if [ $V3 -ge 10 ]; then
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h36 struct V3 : SkOTTableOS2_V3 { } v3; struct in union:SkOTTableOS2::Version
49 static_assert(sizeof(SkOTTableOS2::Version::V3) == 96, "sizeof_SkOTTableOS2__V3_not_96");
/external/eigen/test/eigen2/
H A Deigen2_smallvectors.cpp15 typedef Matrix<Scalar, 3, 1> V3; typedef
22 V3 v3(x1, x2, x3);
/external/clang/test/CodeGen/
H A Dsse41-builtins.c27 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) { argument
30 return _mm_blendv_epi8(V1, V2, V3);
33 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) { argument
36 return _mm_blendv_pd(V1, V2, V3);
39 __m128 test_mm_blendv_ps(__m128 V1, __m128 V2, __m128 V3) { argument
42 return _mm_blendv_ps(V1, V2, V3);
/external/clang/test/Layout/
H A Dms-x86-aligned-tail-padding.cpp36 struct V3 { struct
38 V3() : a(0xf0000022) {} function in struct:V3
280 struct G : virtual V2, virtual V3 {
294 // CHECK-NEXT: 24 | struct V3 (virtual base)
307 // CHECK-X64-NEXT: 32 | struct V3 (virtual base)
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp49 constexpr enum E3 { V3 } e3 = V3; enumerator in enum:E3
/external/clang/test/Parser/
H A Drecovery.cpp145 static const int V3 = 3; // expected-note {{declared here}} member in struct:MissingBrace::S::PR17084::TempID::C1
159 case C1::V3:: break; // expected-error{{'V3' cannot appear before '::' because it is not a class, namespace, or enumeration; did you mean ':'?}}
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp64 struct V3 : V1 { struct in namespace:__anon12783
65 ~V3() override;
70 struct V5 : V4, V3 { double z;
85 V3::~V3() {}
131 [AlignOf<V3>::Alignment > 0]
171 EXPECT_LE(alignOf<V1>(), alignOf<V3>());
249 EXPECT_EQ(alignOf<V3>(), alignOf<AlignedCharArrayUnion<V3> >());
314 EXPECT_EQ(sizeof(V3), sizeo
[all...]
/external/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp189 __declspec(property(get=GetV, put=SetV_NotExist)) int V3; member in struct:StructWithProperty
201 sp.V3 = 14; // expected-error{{no member named 'SetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable setter for property 'V3'}}
/external/vulkan-validation-layers/libs/glm/detail/
H A Dtype_mat3x2.hpp89 template <typename V1, typename V2, typename V3>
93 tvec2<V3, P> const & v3);
H A Dtype_mat3x4.hpp89 template <typename V1, typename V2, typename V3>
93 tvec4<V3, P> const & v3);
H A Dtype_mat4x2.hpp94 template <typename V1, typename V2, typename V3, typename V4>
98 tvec2<V3, P> const & v3,
H A Dtype_mat4x3.hpp94 template <typename V1, typename V2, typename V3, typename V4>
98 tvec3<V3, P> const & v3,
H A Dtype_mat3x3.hpp94 template <typename V1, typename V2, typename V3>
98 tvec3<V3, P> const & v3);
H A Dtype_mat4x4.hpp99 template <typename V1, typename V2, typename V3, typename V4>
103 tvec4<V3, P> const & v3,
/external/llvm/utils/PerfectShuffle/
H A DPerfectShuffle.cpp30 unsigned V2, unsigned V3) {
31 return (V0 << (3*4)) | (V1 << (2*4)) | (V2 << (1*4)) | (V3 << (0*4));
29 MakeMask(unsigned V0, unsigned V1, unsigned V2, unsigned V3) argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h744 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
749 (DST)[3] = (V3); \
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
H A DPnPProblem.cpp272 cv::Point3f V3 = Triangle.getV2(); local
279 e2 = SUB(V3, V1);
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp267 SDNode *createQuadSRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
268 SDNode *createQuadDRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
269 SDNode *createQuadQRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
1637 SDValue V2, SDValue V3) {
1646 V2, SubReg2, V3, SubReg3 };
1652 SDValue V2, SDValue V3) {
1661 V2, SubReg2, V3, SubReg3 };
1667 SDValue V2, SDValue V3) {
1676 V2, SubReg2, V3, SubReg3 };
2002 SDValue V3 local
1636 createQuadSRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3) argument
1651 createQuadDRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3) argument
1666 createQuadQRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3) argument
2050 SDValue V3 = (NumVecs == 3) local
2168 SDValue V3 = (NumVecs == 3) local
2303 SDValue V3 = (NumVecs == 3) local
[all...]
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp92 int V1, V2, V3; variable
97 set3(I3<&V3, &V2>());
100 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, [...]>' to 'I3<&V1, [...]>' for 1st argument
102 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, &V2>' to 'I3<&V1, &V2>' for 1st argument
106 // CHECK-ELIDE-TREE: [&V3 != &V1]
111 // CHECK-NOELIDE-TREE: [&V3 != &V1]
/external/mesa3d/src/mesa/main/
H A Dmacros.h349 #define ASSIGN_4V( V, V0, V1, V2, V3 ) \
354 V[3] = V3; \

Completed in 738 milliseconds

123