Searched defs:V1 (Results 1 - 25 of 86) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dweak-extern-typeinfo.cpp24 class V1 : public virtual A { class in inherits:A
28 class V2 : public virtual V1 {
31 void V1::foo() { }
H A Dmicrosoft-abi-rtti.cpp17 struct V1 : X1 {}; struct in inherits:X1
18 struct W1 : virtual V1 {};
19 struct Y1 : W1, virtual V1 {} y1;
69 // CHECK-DAG: @"\01??_R2Y1@@8" = linkonce_odr constant [7 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Y1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat
74 // CHECK-DAG: @"\01??_R2W1@@8" = linkonce_odr constant [4 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat
75 // CHECK-DAG: @"\01??_R1A@A@3FA@V1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUV1@@@8" to i8*), i32 1, i32 0, i32 0, i32 4, i32 80, %rtti.ClassHierarchyDescriptor* @"\01??_R3V1@@8" }, comdat
78 // CHECK-DAG: @"\01??_R2V1@@8" = linkonce_odr constant [3 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat
79 // CHECK-DAG: @"\01??_R1A@?0A@EA@V1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUV1@@@8" to i8*), i32 1, i32 0, i32 -1, i32 0, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3V1@@8" }, comdat
189 // X64-DAG: @"\01??_R2Y1@@8" = linkonce_odr constant [7 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Y1@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1
[all...]
H A Dvtable-layout-abi-examples.cpp205 struct V1 { struct in namespace:Test3
210 struct V2 : virtual V1 {
225 // CHECK-7-NEXT: -- (Test3::V1, 16) vtable address --
246 // CHECK-8-NEXT: -- (Test3::V1, 16) vtable address --
249 struct C : virtual V1, virtual V2 {
271 // CHECK-9-NEXT: -- (Test3::V1, 24) vtable address --
292 // CHECK-10-NEXT: -- (Test3::V1, 24) vtable address --
313 // CHECK-11-NEXT: -- (Test3::V1, 24) vtable address --
H A Dvtt-layout.cpp28 class V1 : public A1, public A2 { int i; }; class in namespace:Test3
31 class V2 : public B1, public B2, public virtual V1 { int i; };
33 class C1 : public virtual V1 { int i; };
43 // (making A2 a virtual base of V1)
47 class V1 : public A1, public virtual A2 { int i; }; class in namespace:Test4
50 class V2 : public B1, public B2, public virtual V1 { int i; };
52 class C1 : public virtual V1 { int i; };
H A Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp8 struct V1 { struct
10 virtual ~V1();
28 struct V4 : Z, V1, V2 {
56 struct A : virtual V1 {
57 // CHECK-LABEL: VFTable for 'V1' in 'simple::A' (2 entries).
124 // CHECK-LABEL: VFTable for 'V1' in 'V4' in 'simple::C' (2 entries).
239 // CHECK-LABEL: VFTable for 'V1' in 'simple::A' in 'extended::A' (2 entries).
266 // CHECK-LABEL: VFTable for 'V1' in 'simple::A' in 'extended::B' (2 entries).
283 // CHECK-LABEL: VFTable for 'V1' in 'simple::A' in 'extended::C' (2 entries).
352 // CHECK-LABEL: VFTable for 'V1' i
[all...]
H A Dthunks.cpp49 struct V1 { }; struct in namespace:Test3
50 struct V2 : virtual V1 { };
53 virtual V1 *f();
/external/clang/test/Parser/
H A Dcxx0x-member-initializers.cpp26 struct V1 { struct
28 V1() : a(), b{} {} function in struct:V1
/external/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp23 VirtualRefCounted *V1 = new VirtualRefCounted; local
24 IntrusiveRefCntPtr<VirtualRefCounted> R1 = V1;
25 VirtualRefCounted *V2 = new VirtualRefCounted(*V1);
/external/guava/guava/src/com/google/common/collect/
H A DPlatform.java69 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap( argument
70 SortedMap<K, V1> fromMap,
71 EntryTransformer<? super K, ? super V1, V2> transformer) {
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h33 struct V1 : SkOTTableOS2_V1 { } v1; struct in union:SkOTTableOS2::Version
47 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V1) == 86, sizeof_SkOTTableOS2__V1_not_86);
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp62 struct V1 { virtual ~V1(); }; struct in namespace:__anon11288
64 struct V3 : V1 {
83 V1::~V1() {}
129 [AlignOf<V1>::Alignment > 0]
169 EXPECT_LE(alignOf<S1>(), alignOf<V1>());
170 EXPECT_LE(alignOf<V1>(), alignOf<V2>());
171 EXPECT_LE(alignOf<V1>(), alignOf<V3>());
172 EXPECT_LE(alignOf<V1>(), alignO
[all...]
/external/bison/src/
H A Dreduce.c53 static bitset V1; variable
224 bitset_set (V1, rules[r].precsym->number);
409 V1 = bitset_create (nsyms, BITSET_FIXED);
447 return !bitset_test (V, i) && !bitset_test (V1, i);
466 bitset_free (V1);
/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 );
180 if (Amt >= V1.getBitWidth())
183 return &getValue( V1.operator<<( (unsigned) Amt ));
198 if (Amt >= V1.getBitWidth())
201 return &getValue( V1
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/Layout/
H A Dms-x86-aligned-tail-padding.cpp30 struct V1 : A16 { virtual void f() {} }; struct in inherits:A16
245 struct F : B0, virtual V1 {
259 // CHECK-NEXT: 92 | (vtordisp for vbase V1)
260 // CHECK-NEXT: 96 | struct V1 (virtual base)
261 // CHECK-NEXT: 96 | (V1 vftable pointer)
273 // CHECK-X64-NEXT: 92 | (vtordisp for vbase V1)
274 // CHECK-X64-NEXT: 96 | struct V1 (virtual base)
275 // CHECK-X64-NEXT: 96 | (V1 vftable pointer)
/external/clang/test/Sema/
H A Dconst-eval.c63 static const struct a V1 = (struct a){ 1, 2}; variable in typeref:struct:a
/external/llvm/lib/Support/
H A DFileUtilities.cpp85 double V1 = 0.0, V2 = 0.0; local
103 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd));
112 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd));
139 if (AbsTolerance < std::abs(V1-V2)) {
143 Diff = std::abs(V1/V2 - 1.0);
144 else if (V1)
145 Diff = std::abs(V2/V1 - 1.0);
151 << "Compared: " << V1 << " and " << V2 << '\n'
152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
/external/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp49 Value *V1 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V1"); local
57 const SCEV *S1 = SE.getSCEV(V1);
77 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V1);
81 V2->replaceAllUsesWith(V1);
82 V1->replaceAllUsesWith(V0);
/external/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_in_class.cpp241 template<typename B> static const int V1; member in struct:in_class_template::definition_after_outer_instantiation::S
245 template<typename A> template<typename B> const int S<A>::V1 = 123; member in class:in_class_template::definition_after_outer_instantiation::S
248 static_assert(S<int>::V1<int> == 123, "");
263 static_assert(S<char>::V1<int> == 123, "");
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DPlatform.java123 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap( argument
124 SortedMap<K, V1> fromMap,
125 EntryTransformer<? super K, ? super V1, V2> transformer) {
/external/llvm/include/llvm/ADT/
H A DEquivalenceClasses.h216 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) { argument
217 iterator V1I = insert(V1), V2I = insert(V2);
/external/llvm/include/llvm/IR/
H A DConstantFolder.h227 Constant *CreateShuffleVector(Constant *V1, Constant *V2, argument
229 return ConstantExpr::getShuffleVector(V1, V2, Mask);
/external/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp90 static void PrintResults(const char *Msg, bool P, const Value *V1, argument
96 V1->printAsOperand(os1, true, M);
128 PrintLoadStoreResults(const char *Msg, bool P, const Value *V1, argument
131 errs() << " " << Msg << ": " << *V1
/external/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp77 unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(); local
81 V1 = RegInfo.createVirtualRegister(RC);
85 addReg(V1, RegState::Define).
91 .addReg(V1).addReg(V2);
/external/llvm/utils/PerfectShuffle/
H A DPerfectShuffle.cpp29 static inline unsigned short MakeMask(unsigned V0, unsigned V1, argument
31 return (V0 << (3*4)) | (V1 << (2*4)) | (V2 << (1*4)) | (V3 << (0*4));
/external/opencv/cxcore/src/
H A Dcxjacobieigens.cpp106 float *V1 = V, *A1 = A; local
109 for( p = 0; p < n - 1; p++, A1 += n, V1 += n )
142 Vpi = V1[i];
146 V1[i] = (float) (Vpi * c - Vqi * s);
153 Vpi = V1[i];
157 V1[i] = (float) (Vpi * c - Vqi * s);
164 Vpi = V1[i];
168 V1[i] = (float) (Vpi * c - Vqi * s);
223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V; local
234 for( i = 0; i < n; i++, V1
[all...]

Completed in 2379 milliseconds

1234