Searched refs:V2 (Results 1 - 25 of 136) sorted by relevance

123456

/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 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 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 Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp13 struct V2 { struct
15 virtual ~V2();
25 struct V3 : Z, V2 {
28 struct V4 : Z, V1, V2 {
88 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::B' (2 entries).
136 // CHECK-LABEL: VFTable for 'V2' in 'V4' in 'simple::C' (2 entries).
162 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::B' in 'simple::D' (2 entries).
186 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::E' in 'simple::F' (2 entries).
208 // CHECK-LABEL: VFTable for 'V2' in 'V3' in 'simple::E' in 'simple::F' in 'simple::G' (2 entries).
302 struct D : virtual V2 {
[all...]
/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/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp42 VectorT V2; member in class:__anon26463::TinyPtrVectorTest
66 V2.clear();
67 appendValues(V2, Values2);
155 TypeParam Copy2(this->V2);
158 this->expectValues(this->V2, this->testArray(0));
166 this->V = this->V2;
168 this->expectValues(this->V2, this->testArray(0));
169 this->V = std::move(this->V2);
173 this->V = this->V2;
175 this->expectValues(this->V2, thi
[all...]
H A DIntrusiveRefCntPtrTest.cpp25 VirtualRefCounted *V2 = new VirtualRefCounted(*V1); local
26 IntrusiveRefCntPtr<VirtualRefCounted> R2 = V2;
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
H A Dp6.cpp10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}}
/external/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.h42 V1, V2, V3, V4, V5 enumerator in enum:llvm::HexagonSubtarget::HexagonArchEnum
80 bool hasV2TOps () const { return HexagonArchVersion >= V2; }
81 bool hasV2TOpsOnly () const { return HexagonArchVersion == V2; }
91 bool isSubtargetV2() const { return HexagonArchVersion == V2;}
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_OS_2.h34 struct V2 : SkOTTableOS2_V2 { } v2; struct in union:SkOTTableOS2::Version
48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96);
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h34 struct V2 : SkOTTableOS2_V2 { } v2; struct in union:SkOTTableOS2::Version
48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96);
/external/llvm/lib/IR/
H A DConstantFold.h36 Constant *V1, Constant *V2);
40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
47 Constant *V2);
/external/easymock/src/org/easymock/
H A DMockControl.java462 * @param <V2> returned value type
467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) {
481 * @param <V2> returned value type
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
504 * @param <V2> returned value type
510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
525 * @param <V2> returne
[all...]
/external/clang/test/CodeGen/
H A Dsse-builtins.c241 __m128d test_blend_pd(__m128d V1, __m128d V2) { argument
244 return _mm_blend_pd(V1, V2, 1);
247 __m128 test_blend_ps(__m128 V1, __m128 V2) { argument
250 return _mm_blend_ps(V1, V2, 5);
253 __m128i test_blend_epi16(__m128i V1, __m128i V2) { argument
256 return _mm_blend_epi16(V1, V2, 42);
/external/llvm/lib/Support/
H A DFileUtilities.cpp85 double V1 = 0.0, V2 = 0.0; local
104 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
122 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
139 if (AbsTolerance < std::abs(V1-V2)) {
142 if (V2)
143 Diff = std::abs(V1/V2 - 1.0);
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/guava/guava/src/com/google/common/collect/
H A DTables.java398 public static <R, C, V1, V2> Table<R, C, V2> transformValues(
399 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
400 return new TransformedTable<R, C, V1, V2>(fromTable, function);
403 private static class TransformedTable<R, C, V1, V2>
404 implements Table<R, C, V2> {
406 final Function<? super V1, V2> function;
409 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
430 @Override public V2 get(Object rowKey, Object columnKey) {
449 @Override public V2 pu
[all...]
H A DMaps.java941 public static <K, V1, V2> Map<K, V2> transformValues(
942 Map<K, V1> fromMap, final Function<? super V1, V2> function) {
944 EntryTransformer<K, V1, V2> transformer =
945 new EntryTransformer<K, V1, V2>() {
947 public V2 transformEntry(K key, V1 value) {
994 public static <K, V1, V2> SortedMap<K, V2> transformValues(
995 SortedMap<K, V1> fromMap, final Function<? super V1, V2> function) {
997 EntryTransformer<K, V1, V2> transforme
[all...]
H A DMultimaps.java1326 public static <K, V1, V2> Multimap<K, V2> transformValues(
1327 Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) {
1329 EntryTransformer<K, V1, V2> transformer =
1330 new EntryTransformer<K, V1, V2>() {
1332 public V2 transformEntry(K key, V1 value) {
1395 public static <K, V1, V2> Multimap<K, V2> transformEntries(
1397 EntryTransformer<? super K, ? super V1, V2> transformer) {
1398 return new TransformedEntriesMultimap<K, V1, V2>(fromMa
[all...]
/external/clang/lib/Headers/
H A Dshaintrin.h35 #define _mm_sha1rnds4_epu32(V1, V2, M) __extension__ ({ \
36 __builtin_ia32_sha1rnds4((V1), (V2), (M)); })
/external/eigen/test/eigen2/
H A Deigen2_smallvectors.cpp14 typedef Matrix<Scalar, 1, 2> V2; typedef
21 V2 v2(x1, x2);
/external/llvm/include/llvm/IR/
H A DInstrTypes.h176 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
178 return Create(Instruction::OPC, V1, V2, Name);\
182 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
184 return Create(Instruction::OPC, V1, V2, Name, BB);\
188 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
190 return Create(Instruction::OPC, V1, V2, Name, I);\
194 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
196 BinaryOperator *BO = Create(Opc, V1, V2, Name);
200 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
202 BinaryOperator *BO = Create(Opc, V1, V2, Nam
206 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
213 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
219 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
225 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
232 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
238 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
244 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp540 /// In addition to pointer equivalence of \p V1 and \p V2 this checks
545 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2);
558 const Value *V2, uint64_t V2Size,
566 const Value *V2, uint64_t V2Size,
572 const Value *V2, uint64_t V2Size,
577 const Value *V2, uint64_t V2Size,
859 /// anything about V2. UnderlyingV1 is GetUnderlyingObject(GEP1, DL),
860 /// UnderlyingV2 is the same for V2.
865 const Value *V2, uint64_t V2Size,
876 if (const GEPOperator *GEP2 = dyn_cast<GEPOperator>(V2)) {
863 aliasGEP(const GEPOperator *GEP1, uint64_t V1Size, const MDNode *V1TBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo, const Value *UnderlyingV1, const Value *UnderlyingV2) argument
1068 aliasSelect(const SelectInst *SI, uint64_t SISize, const MDNode *SITBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo) argument
1102 aliasPHI(const PHINode *PN, uint64_t PNSize, const MDNode *PNTBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo) argument
1189 aliasCheck(const Value *V1, uint64_t V1Size, const MDNode *V1TBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo) argument
1330 isValueEqualInPotentialCycles(const Value *V, const Value *V2) argument
[all...]
/external/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp101 auto *V2 = dyn_cast<Variable>(D); local
102 if (V2)
103 V = V2;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java912 public static <K, V1, V2> Map<K, V2> transformValues(
913 Map<K, V1> fromMap, final Function<? super V1, V2> function) {
915 EntryTransformer<K, V1, V2> transformer =
916 new EntryTransformer<K, V1, V2>() {
918 public V2 transformEntry(K key, V1 value) {
965 public static <K, V1, V2> SortedMap<K, V2> transformValues(
966 SortedMap<K, V1> fromMap, final Function<? super V1, V2> function) {
968 EntryTransformer<K, V1, V2> transforme
[all...]
/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 544 milliseconds

123456