Searched refs:V2 (Results 1 - 25 of 143) 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 if (V2 == 0) // Avoid division by zero
159 return &getValue( V1 / V2 );
162 if (V2 == 0) // Avoid division by zero
164 return &getValue( V1 % V2 );
167 return &getValue( V1 + V2 );
170 return &getValue( V1 - V2 );
179 if (V2.isSigned() && V2
146 evalAPSInt(BinaryOperator::Opcode Op, const llvm::APSInt& V1, const llvm::APSInt& V2) argument
266 getPersistentSValPair(const SVal& V1, const SVal& V2) argument
[all...]
/external/selinux/scripts/
H A DLindent5 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2`
10 if [ $V2 -gt 2 ]; then
12 elif [ $V2 -eq 2 ]; then
/external/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp42 VectorT V2; member in class:__anon12720::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/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
H A DMesh.cpp17 Triangle::Triangle(int id, cv::Point3f V0, cv::Point3f V1, cv::Point3f V2) argument
19 id_ = id; v0_ = V0; v1_ = V1; v2_ = V2;
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h34 struct V2 : SkOTTableOS2_V2 { } v2; struct in union:SkOTTableOS2::Version
48 static_assert(sizeof(SkOTTableOS2::Version::V2) == 96, "sizeof_SkOTTableOS2__V2_not_96");
/external/clang/test/CodeGen/
H A Dsse41-builtins.c9 __m128i test_mm_blend_epi16(__m128i V1, __m128i V2) { argument
12 return _mm_blend_epi16(V1, V2, 42);
15 __m128d test_mm_blend_pd(__m128d V1, __m128d V2) { argument
18 return _mm_blend_pd(V1, V2, 2);
21 __m128 test_mm_blend_ps(__m128 V1, __m128 V2) { argument
24 return _mm_blend_ps(V1, V2, 6);
27 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) { argument
30 return _mm_blendv_epi8(V1, V2, V3);
33 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) { argument
36 return _mm_blendv_pd(V1, V2, V
39 test_mm_blendv_ps(__m128 V1, __m128 V2, __m128 V3) argument
[all...]
/external/llvm/lib/IR/
H A DConstantFold.h36 Constant *V1, Constant *V2);
40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
47 Constant *V2);
/external/guava/guava/src/com/google/common/collect/
H A DTables.java332 public static <R, C, V1, V2> Table<R, C, V2> transformValues(
333 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
334 return new TransformedTable<R, C, V1, V2>(fromTable, function);
337 private static class TransformedTable<R, C, V1, V2>
338 extends AbstractTable<R, C, V2> {
340 final Function<? super V1, V2> function;
343 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
352 @Override public V2 get(Object rowKey, Object columnKey) {
367 @Override public V2 pu
[all...]
H A DPlatform.java71 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap(
73 EntryTransformer<? super K, ? super V1, V2> transformer) {
H A DMultimaps.java1107 public static <K, V1, V2> Multimap<K, V2> transformValues(
1108 Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) {
1110 EntryTransformer<K, V1, V2> transformer = Maps.asEntryTransformer(function);
1169 public static <K, V1, V2> Multimap<K, V2> transformEntries(
1171 EntryTransformer<? super K, ? super V1, V2> transformer) {
1172 return new TransformedEntriesMultimap<K, V1, V2>(fromMap, transformer);
1175 private static class TransformedEntriesMultimap<K, V1, V2>
1176 extends AbstractMultimap<K, V2> {
[all...]
/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/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysisEvaluator.cpp73 for (Value *V2 : Values) {
74 StringRef NameV2 = getName(V2);
78 if (PA.related(V1, V2, DL))
/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-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimaps.java1018 public static <K, V1, V2> Multimap<K, V2> transformValues(
1019 Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) {
1021 EntryTransformer<K, V1, V2> transformer = Maps.asEntryTransformer(function);
1080 public static <K, V1, V2> Multimap<K, V2> transformEntries(
1082 EntryTransformer<? super K, ? super V1, V2> transformer) {
1083 return new TransformedEntriesMultimap<K, V1, V2>(fromMap, transformer);
1086 private static class TransformedEntriesMultimap<K, V1, V2>
1087 extends AbstractMultimap<K, V2> {
[all...]
/external/clang/lib/Headers/
H A Dshaintrin.h34 #define _mm_sha1rnds4_epu32(V1, V2, M) __extension__ ({ \
35 __builtin_ia32_sha1rnds4((__v4si)(__m128i)(V1), (__v4si)(__m128i)(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/ADT/
H A DAPSInt.h328 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; } argument
329 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; } argument
330 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; } argument
331 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; } argument
332 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V argument
333 operator >(int64_t V1, const APSInt &V2) argument
[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...]
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp886 /// We know that V1 is a GEP, but we don't know anything about V2.
888 /// V2.
890 const AAMDNodes &V1AAInfo, const Value *V2,
901 if (const GEPOperator *GEP2 = dyn_cast<GEPOperator>(V2)) {
1000 AAMDNodes(), V2, V2Size, V2AAInfo);
1002 // If V2 may alias GEP base pointer, conservatively returns MayAlias.
1003 // If V2 is known not to alias GEP base pointer, then the two values
1028 // In the other case, if we have getelementptr <ptr>, 0, 0, 0, 0, ... and V2
1050 // GEP1 V2
1110 // If GEP1BasePtr > V2 (GEP1BaseOffse
889 aliasGEP(const GEPOperator *GEP1, uint64_t V1Size, const AAMDNodes &V1AAInfo, const Value *V2, uint64_t V2Size, const AAMDNodes &V2AAInfo, const Value *UnderlyingV1, const Value *UnderlyingV2) argument
1144 aliasSelect(const SelectInst *SI, uint64_t SISize, const AAMDNodes &SIAAInfo, const Value *V2, uint64_t V2Size, const AAMDNodes &V2AAInfo) argument
1176 aliasPHI(const PHINode *PN, uint64_t PNSize, const AAMDNodes &PNAAInfo, const Value *V2, uint64_t V2Size, const AAMDNodes &V2AAInfo) argument
1282 aliasCheck(const Value *V1, uint64_t V1Size, AAMDNodes V1AAInfo, const Value *V2, uint64_t V2Size, AAMDNodes V2AAInfo) argument
1441 isValueEqualInPotentialCycles(const Value *V, const Value *V2) argument
[all...]

Completed in 716 milliseconds

123456