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

1 2 3

  /external/eigen/test/
smallvectors.cpp 16 typedef Matrix<Scalar, 3, 1> V3;
24 V3 v3(x1, x2, x3);
27 VERIFY_IS_APPROX(x1, v3.x());
30 VERIFY_IS_APPROX(x2, v3.y());
32 VERIFY_IS_APPROX(x3, v3.z());
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))
    [all...]
  /external/clang/test/CodeGenCXX/
vtt-layout.cpp 32 class V3 {virtual void g(); };
34 class C2 : public virtual V3, virtual V2 { int i; };
51 class V3 {virtual void g(); };
53 class C2 : public virtual V3, virtual V2 { int i; };
microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp 25 struct V3 : 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' in 'simple::E' in 'simple::F' in 'simple::G' (2 entries)
    [all...]
vtable-layout.cpp 264 struct V3 : virtual R3 { int r3; };
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;}
    [all...]
  /external/selinux/scripts/
Lindent 6 V3=`echo $RES | cut -d' ' -f3 | cut -d'.' -f3`
13 if [ $V3 -ge 10 ]; then
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGNUInfo.h 20 enum CPUType { V3 = 0x2, V4 = 0x3, V5 };
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 36 struct V3 : SkOTTableOS2_V3 { } v3; member in union:SkOTTableOS2::Version
49 static_assert(sizeof(SkOTTableOS2::Version::V3) == 96, "sizeof_SkOTTableOS2__V3_not_96");
  /external/eigen/test/eigen2/
eigen2_smallvectors.cpp 15 typedef Matrix<Scalar, 3, 1> V3;
22 V3 v3(x1, x2, x3);
25 VERIFY_IS_APPROX(x1, v3.x());
28 VERIFY_IS_APPROX(x2, v3.y());
30 VERIFY_IS_APPROX(x3, v3.z());
  /external/clang/test/CodeGen/
sse41-builtins.c 27 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) {
30 return _mm_blendv_epi8(V1, V2, V3);
33 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) {
36 return _mm_blendv_pd(V1, V2, V3);
39 __m128 test_mm_blendv_ps(__m128 V1, __m128 V2, __m128 V3) {
42 return _mm_blendv_ps(V1, V2, V3);
  /external/clang/test/Layout/
ms-x86-aligned-tail-padding.cpp 36 struct V3 {
38 V3() : a(0xf0000022) {}
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/Parser/
recovery.cpp 145 static const int V3 = 3; // expected-note {{declared here}}
159 case C1::V3:: break; // expected-error{{'V3' cannot appear before '::' because it is not a class, namespace, or enumeration; did you mean ':'?}}
  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateVersion.java 54 public static final int V3 = 2;
102 if (version == V1 || version == V2 || version == V3)
  /external/llvm/unittests/Support/
AlignOfTest.cpp 64 struct V3 : V1 {
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), sizeof(AlignedCharArrayUnion<V3>))
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 49 constexpr enum E3 { V3 } e3 = V3;
  /cts/suite/audio_quality/test/
TaskCaseTest.cpp 83 const android::String8 V3("v3");
88 ASSERT_TRUE(mTaskCase->registerValue(V3, val3));
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 189 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
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/
type_mat3x2.hpp 89 template <typename V1, typename V2, typename V3>
93 tvec2<V3, P> const & v3);
type_mat3x4.hpp 89 template <typename V1, typename V2, typename V3>
93 tvec4<V3, P> const & v3);
type_mat4x2.hpp 78 col_type const & v3);
94 template <typename V1, typename V2, typename V3, typename V4>
98 tvec2<V3, P> const & v3,
type_mat4x3.hpp 78 col_type const & v3);
94 template <typename V1, typename V2, typename V3, typename V4>
98 tvec3<V3, P> const & v3,
type_mat3x3.hpp 94 template <typename V1, typename V2, typename V3>
98 tvec3<V3, P> const & v3);
type_mat4x4.hpp 83 col_type const & v3);
99 template <typename V1, typename V2, typename V3, typename V4>
103 tvec4<V3, P> const & v3,
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 30 unsigned V2, unsigned V3) {
31 return (V0 << (3*4)) | (V1 << (2*4)) | (V2 << (1*4)) | (V3 << (0*4));
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 744 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
749 (DST)[3] = (V3); \
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
PnPProblem.cpp 272 cv::Point3f V3 = Triangle.getV2();
279 e2 = SUB(V3, V1);

Completed in 1839 milliseconds

1 2 3