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

1 2

  /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());
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGNUInfo.h 20 enum CPUType { V3 = 0x2, V4 = 0x3, V5 };
  /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/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/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/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)
  /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)
  /prebuilts/go/darwin-x86/src/math/big/
arith_amd64.s 156 JL V3 // if n < 4 goto V3
179 V3: ADDQ $4, DI // n += 4
  /prebuilts/go/linux-x86/src/math/big/
arith_amd64.s 156 JL V3 // if n < 4 goto V3
179 V3: ADDQ $4, DI // n += 4
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 49 constexpr enum E3 { V3 } e3 = V3;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Batch.java 238 static public final int V3 = 14;
  /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);
  /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 ':'?}}
MicrosoftExtensions.cpp 313 __declspec(property(ptu)) int V3; // expected-error {{missing 'get=' or 'put='}}
  /external/clang/test/Misc/
diag-template-diffing.cpp 92 int V1, V2, V3;
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]
    [all...]
  /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/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btMatrix3x3.h 219 __m128 V1, V2, V3;
226 V3 = btCastiTo128f(_mm_shuffle_epi32 (Qi, BT_SHUFFLE(2,1,0,3))); // Z Y X W
235 V3 = V3 * V31; //
251 V3 = V3 + V31;
257 V3 = V3 * vs;
261 V3 = V3 + v0010
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
Decal.java 396 * v3.set(vertices[xIndex] * scale.x, vertices[yIndex] * scale.y, vertices[zIndex]); rotation.transform(v3);
397 * v3.add(position); vertices[xIndex] = v3.x; vertices[yIndex] = v3.y; vertices[zIndex] = v3.z;
538 vertices[V3] = tr.getV2();
606 public static final int V3 = 17;
  /external/deqp/modules/gles2/functional/
es2fShaderOperatorTests.cpp 219 V3 = VALUE_VEC3,
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp     [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 267 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);
    [all...]

Completed in 1216 milliseconds

1 2