Searched defs:V2 (Results 1 - 25 of 61) sorted by relevance

123

/external/clang/test/CodeGenCXX/
H A Dweak-extern-typeinfo.cpp28 class V2 : public virtual V1 { class in inherits:V1
32 void V2::foo() { }
H A Dvtable-layout-abi-examples.cpp210 struct V2 : virtual V1 { struct in namespace:Test3
232 // CHECK-7-NEXT: -- (Test3::V2, 32) vtable address --
236 // CHECK-8: Construction vtable for ('Test3::V2', 32) in 'Test3::C' (9 entries).
240 // CHECK-8-NEXT: 3 | Test3::V2 RTTI
241 // CHECK-8-NEXT: -- (Test3::V2, 32) vtable address --
242 // CHECK-8-NEXT: 4 | void Test3::V2::f()
245 // CHECK-8-NEXT: 7 | Test3::V2 RTTI
247 // CHECK-8-NEXT: 8 | void Test3::V2::f()
249 struct C : virtual V1, virtual V2 {
278 // CHECK-9-NEXT: -- (Test3::V2, 4
[all...]
H A Dvtt-layout.cpp31 class V2 : public B1, public B2, public virtual V1 { int i; }; class in namespace:Test3
34 class C2 : public virtual V3, virtual V2 { int i; };
50 class V2 : public B1, public B2, public virtual V1 { int i; }; class in namespace:Test4
53 class C2 : public virtual V3, virtual V2 { int i; };
H A Dthunks.cpp50 struct V2 : virtual V1 { }; struct in namespace:Test3
59 virtual V2 *f();
63 V2 *B::f() { return 0; }
/external/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp23 VirtualRefCounted *V2 = new VirtualRefCounted(*V1); local
24 IntrusiveRefCntPtr<VirtualRefCounted> R2 = V2;
H A DTinyPtrVectorTest.cpp42 VectorT V2; member in class:__anon9246::TinyPtrVectorTest
66 V2.clear();
67 appendValues(V2, Values2);
155 TypeParam Copy2(this->V2);
158 this->expectValues(this->V2, this->testArray(0));
168 this->V = this->V2;
170 this->expectValues(this->V2, this->testArray(0));
172 this->V = std::move(this->V2);
177 this->V = this->V2;
179 this->expectValues(this->V2, thi
[all...]
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp30 Value *V2 = V1->clone(); local
32 Clones.insert(V2);
33 return cast<T>(V2);
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp147 const llvm::APSInt& V1, const llvm::APSInt& V2) {
154 return &getValue( V1 * V2 );
157 return &getValue( V1 / V2 );
160 return &getValue( V1 % V2 );
163 return &getValue( V1 + V2 );
166 return &getValue( V1 - V2 );
175 if (V2.isSigned() && V2.isNegative())
178 uint64_t Amt = V2.getZExtValue();
193 if (V2
146 evalAPSInt(BinaryOperator::Opcode Op, const llvm::APSInt& V1, const llvm::APSInt& V2) argument
262 getPersistentSValPair(const SVal& V1, const SVal& V2) argument
[all...]
/external/clang/test/Sema/
H A Dconst-eval.c62 static struct a V2 = (struct a)(struct a){ 1, 2}; variable in typeref:struct:a
/external/llvm/lib/Support/
H A DFileUtilities.cpp86 double V1 = 0.0, V2 = 0.0; local
105 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
123 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
140 if (AbsTolerance < std::abs(V1-V2)) {
143 if (V2)
144 Diff = std::abs(V1/V2 - 1.0);
146 Diff = std::abs(V2/V1 - 1.0);
152 << "Compared: " << V1 << " and " << V2 << '\n'
153 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
H A DStringMap.cpp160 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); local
161 (void)V2;
162 assert(V == V2 && "Didn't find key?");
/external/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.h36 V1, V2, V3, V4, V5 enumerator in enum:llvm::HexagonSubtarget::HexagonArchEnum
55 bool hasV2TOps () const { return HexagonArchVersion >= V2; }
56 bool hasV2TOpsOnly () const { return HexagonArchVersion == V2; }
66 bool isSubtargetV2() const { return HexagonArchVersion == V2;}
/external/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp50 Value *V2 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V2"); local
58 const SCEV *S2 = SE.getSCEV(V2);
78 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2);
81 V2->replaceAllUsesWith(V1);
/external/llvm/unittests/VMCore/
H A DMetadataTest.cpp136 Value *const V2 = C2; local
138 MDNode *n2 = MDNode::get(Context, V2);
/external/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp86 MVT::SimpleValueType V1 = LHSSrc->getType(0), V2 = RHSSrc->getType(0); local
87 if (MVT(V1).isVector() != MVT(V2).isVector())
88 return MVT(V2).isVector();
90 if (MVT(V1).isFloatingPoint() != MVT(V2).isFloatingPoint())
91 return MVT(V2).isFloatingPoint();
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp92 int V1, V2, V3; variable
95 void set3(I3<&V1, &V2>) {};
97 set3(I3<&V3, &V2>());
102 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, &V2>' to 'I3<&V1, &V2>' for 1st argument
112 // CHECK-NOELIDE-TREE: &V2>
/external/llvm/include/llvm/ADT/
H A DAPSInt.h298 inline bool operator==(int64_t V1, const APSInt& V2) { argument
299 return V2 == V1;
301 inline bool operator!=(int64_t V1, const APSInt& V2) { argument
302 return V2 != V1;
H A DEquivalenceClasses.h213 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) { argument
214 iterator V1I = insert(V1), V2I = insert(V2);
/external/llvm/include/llvm/Support/
H A DConstantFolder.h220 Constant *CreateShuffleVector(Constant *V1, Constant *V2, argument
222 return ConstantExpr::getShuffleVector(V1, V2, Mask);
H A DTargetFolder.h237 Constant *CreateShuffleVector(Constant *V1, Constant *V2, argument
239 return Fold(ConstantExpr::getShuffleVector(V1, V2, Mask));
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp90 const Value *V2, const Module *M) {
96 WriteAsOperand(os2, V2, true, M);
89 PrintResults(const char *Msg, bool P, const Value *V1, const Value *V2, const Module *M) argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h121 V2 = 2, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::VecType
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp67 struct V2 { int x; virtual ~V2(); }; struct in namespace:__anon9262
69 struct V4 : virtual V2 { int y; virtual ~V4(); };
72 struct V7 : virtual V2, virtual V6 { virtual ~V7(); };
117 [AlignOf<V2>::Alignment > 0]
167 EXPECT_LE(alignOf<V1>(), alignOf<V2>());
249 EXPECT_EQ(alignOf<V2>(), alignOf<AlignedCharArrayUnion<V2> >());
314 EXPECT_EQ(sizeof(V2), sizeof(AlignedCharArrayUnion<V2>));
[all...]
/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/opencv/cxcore/src/
H A Dcxjacobieigens.cpp111 float *A2 = A + n * (p + 1), *V2 = V + n * (p + 1); local
113 for( q = p + 1; q < n; q++, A2 += n, V2 += n )
143 Vqi = V2[i];
147 V2[i] = (float) (Vqi * c + Vpi * s);
154 Vqi = V2[i];
158 V2[i] = (float) (Vqi * c + Vpi * s);
165 Vqi = V2[i];
169 V2[i] = (float) (Vqi * c + Vpi * s);
223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V; local
262 V2
[all...]

Completed in 320 milliseconds

123