HomeSort by relevance Sort by last modified time
    Searched refs:V3 (Results 1 - 25 of 58) 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/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2.h 36 struct V3 : SkOTTableOS2_V3 { } v3; member in union:SkOTTableOS2::Version
49 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V3) == 96, sizeof_SkOTTableOS2__V3_not_96);
  /external/llvm/lib/Target/Hexagon/
HexagonSubtarget.h 42 V1, V2, V3, V4, V5
82 bool hasV3TOps () const { return HexagonArchVersion >= V3; }
83 bool hasV3TOpsOnly () const { return HexagonArchVersion == V3; }
HexagonSubtarget.cpp 28 EnableV3("enable-hexagon-v3", cl::Hidden,
29 cl::desc("Enable Hexagon V3 instructions."));
61 HexagonArchVersion = V3;
HexagonRegisterInfo.cpp 62 case HexagonSubtarget::V3:
109 case HexagonSubtarget::V3:
229 // Only V3 and older instructions here.
  /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/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 scoped enumeration; did you mean ':'?}}
MicrosoftExtensions.cpp 308 __declspec(property(ptu)) int V3; // expected-error {{missing 'get=' or 'put='}}
  /external/llvm/unittests/Support/
AlignOfTest.cpp 72 struct V3 : V1 { virtual ~V3(); };
74 struct V5 : V4, V3 { double z; virtual ~V5(); };
83 V3::~V3() {}
129 [AlignOf<V3>::Alignment > 0]
169 EXPECT_LE(alignOf<V1>(), alignOf<V3>());
247 EXPECT_EQ(alignOf<V3>(), alignOf<AlignedCharArrayUnion<V3> >());
312 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 221 __declspec(property(get=GetV, put=SetV_NotExist)) int V3;
233 sp.V3 = 14; // expected-error{{no member named 'SetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable setter for property 'V3'}}
  /external/llvm/lib/Analysis/
Lint.cpp 141 const Value *V3 = nullptr, const Value *V4 = nullptr) {
145 WriteValue(V3);
167 #define Assert3(C, M, V1, V2, V3) \
168 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
169 #define Assert4(C, M, V1, V2, V3, V4) \
170 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 723 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
728 (DST)[3] = (V3); \
  /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/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/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 270 SDNode *createQuadSRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
271 SDNode *createQuadDRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
272 SDNode *createQuadQRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
macros.h 349 #define ASSIGN_4V( V, V0, V1, V2, V3 ) \
354 V[3] = V3; \
  /external/mesa3d/src/mesa/main/
macros.h 349 #define ASSIGN_4V( V, V0, V1, V2, V3 ) \
354 V[3] = V3; \
  /external/llvm/lib/IR/
Verifier.cpp 120 const Value *V2 = nullptr, const Value *V3 = nullptr,
125 WriteValue(V3);
131 const Value *V3 = nullptr) {
135 WriteValue(V3);
365 #define Assert3(C, M, V1, V2, V3) \
366 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
367 #define Assert4(C, M, V1, V2, V3, V4) \
368 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
    [all...]

Completed in 1462 milliseconds

1 2 3