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

1 2

  /external/clang/test/CodeGenCXX/
weak-extern-typeinfo.cpp 28 class V2 : public virtual V1 {
32 void V2::foo() { }
vtable-layout-abi-examples.cpp 210 struct V2 : virtual V1 {
211 int v2; member in struct:Test3::V2
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 {
    [all...]
vtt-layout.cpp 31 class V2 : public B1, public B2, public virtual V1 { int i; };
34 class C2 : public virtual V3, virtual V2 { int i; };
50 class V2 : public B1, public B2, public virtual V1 { int i; };
53 class C2 : public virtual V3, virtual V2 { int i; };
thunks.cpp 50 struct V2 : virtual V1 { };
59 virtual V2 *f();
63 V2 *B::f() { return 0; }
vtable-layout.cpp 203 struct V2 : virtual V1 { int v1; };
214 // CHECK-9-NEXT: 2 | Test4::V2 *Test4::D::f()
216 // CHECK-9-NEXT: 3 | Test4::V2 *Test4::D::f()
218 virtual V2 *f();
220 V2 *D::f() { return 0; };
947 struct V2 : virtual V1 {
948 int v2; member in struct:Test22::V2
961 // CHECK-29-NEXT: -- (Test22::V2, 16) vtable address --
963 // CHECK-29: Construction vtable for ('Test22::V2', 16) in 'Test22::C' (3 entries).
966 // CHECK-29-NEXT: 2 | Test22::V2 RTT
    [all...]
  /external/llvm/unittests/ADT/
TinyPtrVectorTest.cpp 42 VectorT V2;
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, this->testArray(0))
    [all...]
IntrusiveRefCntPtrTest.cpp 23 VirtualRefCounted *V2 = new VirtualRefCounted(*V1);
24 IntrusiveRefCntPtr<VirtualRefCounted> R2 = V2;
  /external/llvm/lib/Support/
FileUtilities.cpp 86 double V1 = 0.0, V2 = 0.0;
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'
StringMap.cpp 160 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength()));
161 (void)V2;
162 assert(V == V2 && "Didn't find key?");
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 30 Value *V2 = V1->clone();
32 Clones.insert(V2);
33 return cast<T>(V2);
  /external/llvm/utils/TableGen/
DAGISelEmitter.cpp 86 MVT::SimpleValueType V1 = LHSSrc->getType(0), V2 = RHSSrc->getType(0);
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/Sema/
const-eval.c 62 static struct a V2 = (struct a)(struct a){ 1, 2};
  /external/llvm/lib/Target/Hexagon/
HexagonSubtarget.h 36 V1, V2, V3, V4, V5
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/
ScalarEvolutionTest.cpp 50 Value *V2 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V2");
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/
MetadataTest.cpp 136 Value *const V2 = C2;
138 MDNode *n2 = MDNode::get(Context, V2);
  /external/clang/test/Misc/
diag-template-diffing.cpp 92 int V1, V2, V3;
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/lib/Target/NVPTX/
NVPTX.h 121 V2 = 2,
NVPTXUtilities.cpp 369 const Value *V2 = V->stripPointerCasts();
370 if (V2 != V && processed.find(V2) != processed.end())
372 processed.insert(V2);
374 V = V2;
386 if (V != V2 && processed.find(V) != processed.end())
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 426 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
432 LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2),
435 V2->setAlignment(Align);
436 return SelectInst::Create(SI->getCondition(), V1, V2);
696 /// if () { *P = v1; } else { *P = v2 }
700 /// *P = v1; if () { *P = v2; }
InstCombineShifts.cpp 406 Value *V1, *V2;
465 m_And(m_Shr(m_Value(V1), m_Value(V2)),
466 m_ConstantInt(CC))) && V2 == Op1 &&
    [all...]
  /external/llvm/unittests/Support/
AlignOfTest.cpp 67 struct V2 { int x; virtual ~V2(); };
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/opencv/cxcore/src/
cxjacobieigens.cpp 111 float *A2 = A + n * (p + 1), *V2 = V + n * (p + 1);
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;
262 V2 = V + n * (p + 1)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 849 DefinedSVal V2 = cast<DefinedSVal>(V2_untested);
866 SVal Result = evalBinOp(state, Op, V2, RHS, U->getType());
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 128 unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg();
140 V2 = RegInfo.createVirtualRegister(RC);
164 BuildMI(MBB, I, DL, TII.get(Mips::SllX16), V2).addReg(V0).addImm(16);
166 .addReg(V1).addReg(V2);
  /external/clang/lib/CodeGen/
CGValue.h 42 llvm::PointerIntPair<llvm::Value *, 1, bool> V2;
49 bool isVolatileQualified() const { return V2.getInt(); }
60 return std::make_pair(V1.getPointer(), V2.getPointer());
73 ER.V2.setInt(false);
76 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
79 ER.V2.setPointer(V2);
81 ER.V2.setInt(false);
94 ER.V2.setInt(Volatile);

Completed in 620 milliseconds

1 2