/external/llvm/unittests/ADT/ |
D | TinyPtrVectorTest.cpp | 42 VectorT V2; member in __anon186813230111::TinyPtrVectorTest 66 V2.clear(); in setVectors() 67 appendValues(V2, Values2); in setVectors() 155 TypeParam Copy2(this->V2); in TYPED_TEST() 158 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST() 166 this->V = this->V2; in TYPED_TEST() 168 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST() 169 this->V = std::move(this->V2); in TYPED_TEST() 173 this->V = this->V2; in TYPED_TEST() 175 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST() [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BasicValueFactory.cpp | 147 const llvm::APSInt& V1, const llvm::APSInt& V2) { in evalAPSInt() argument 154 return &getValue( V1 * V2 ); in evalAPSInt() 157 if (V2 == 0) // Avoid division by zero in evalAPSInt() 159 return &getValue( V1 / V2 ); in evalAPSInt() 162 if (V2 == 0) // Avoid division by zero in evalAPSInt() 164 return &getValue( V1 % V2 ); in evalAPSInt() 167 return &getValue( V1 + V2 ); in evalAPSInt() 170 return &getValue( V1 - V2 ); in evalAPSInt() 179 if (V2.isSigned() && V2.isNegative()) in evalAPSInt() 182 uint64_t Amt = V2.getZExtValue(); in evalAPSInt() [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | Tables.java | 332 public static <R, C, V1, V2> Table<R, C, V2> transformValues( in transformValues() 333 Table<R, C, V1> fromTable, Function<? super V1, V2> function) { in transformValues() 334 return new TransformedTable<R, C, V1, V2>(fromTable, function); in transformValues() 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) { in TransformedTable() 352 @Override public V2 get(Object rowKey, Object columnKey) { in get() 367 @Override public V2 put(R rowKey, C columnKey, V2 value) { in put() 372 Table<? extends R, ? extends C, ? extends V2> table) { in putAll() [all …]
|
D | Multimaps.java | 1107 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> { 1178 final EntryTransformer<? super K, ? super V1, V2> transformer; 1181 final EntryTransformer<? super K, ? super V1, V2> transformer) { [all …]
|
D | Maps.java | 1492 public static <K, V1, V2> Map<K, V2> transformValues( 1493 Map<K, V1> fromMap, Function<? super V1, V2> function) { 1536 public static <K, V1, V2> SortedMap<K, V2> transformValues( 1537 SortedMap<K, V1> fromMap, Function<? super V1, V2> function) { 1583 public static <K, V1, V2> NavigableMap<K, V2> transformValues( 1584 NavigableMap<K, V1> fromMap, Function<? super V1, V2> function) { 1639 public static <K, V1, V2> Map<K, V2> transformEntries( 1641 EntryTransformer<? super K, ? super V1, V2> transformer) { 1645 return new TransformedEntriesMap<K, V1, V2>(fromMap, transformer); 1700 public static <K, V1, V2> SortedMap<K, V2> transformEntries( [all …]
|
/external/llvm/test/CodeGen/PowerPC/ |
D | vec_perf_shuffle.ll | 5 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1] 6 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 undef, i32 undef, i32 7, i32… 12 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1] 13 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 0, i32 undef, i32 5 >… 19 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1] 20 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 undef, i32 7, i32 3 >… 26 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1] 27 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 7, i32 7, i32 4 > ; … 33 %V2 = load <4 x float>, <4 x float>* %P2 ; <<4 x float>> [#uses=1] 34 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 4, i32 4, i32 5, i32 0 > ; …
|
/external/llvm/test/CodeGen/X86/ |
D | fp_load_cast_fold.ll | 5 %V2 = sitofp i16 %V to double ; <double> [#uses=1] 6 ret double %V2 11 %V2 = sitofp i32 %V to double ; <double> [#uses=1] 12 ret double %V2 17 %V2 = sitofp i64 %V to double ; <double> [#uses=1] 18 ret double %V2
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | Multimaps.java | 1018 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> { 1089 final EntryTransformer<? super K, ? super V1, V2> transformer; 1092 final EntryTransformer<? super K, ? super V1, V2> transformer) { [all …]
|
D | Maps.java | 1290 public static <K, V1, V2> Map<K, V2> transformValues( 1291 Map<K, V1> fromMap, Function<? super V1, V2> function) { 1334 public static <K, V1, V2> SortedMap<K, V2> transformValues( 1335 SortedMap<K, V1> fromMap, Function<? super V1, V2> function) { 1390 public static <K, V1, V2> Map<K, V2> transformEntries( 1392 EntryTransformer<? super K, ? super V1, V2> transformer) { 1396 return new TransformedEntriesMap<K, V1, V2>(fromMap, transformer); 1451 public static <K, V1, V2> SortedMap<K, V2> transformEntries( 1453 EntryTransformer<? super K, ? super V1, V2> transformer) { 1457 static <K, V1, V2> SortedMap<K, V2> transformEntriesIgnoreNavigable( [all …]
|
/external/clang/test/CodeGen/ |
D | sse41-builtins.c | 9 __m128i test_mm_blend_epi16(__m128i V1, __m128i V2) { in test_mm_blend_epi16() argument 12 return _mm_blend_epi16(V1, V2, 42); in test_mm_blend_epi16() 15 __m128d test_mm_blend_pd(__m128d V1, __m128d V2) { in test_mm_blend_pd() argument 18 return _mm_blend_pd(V1, V2, 2); in test_mm_blend_pd() 21 __m128 test_mm_blend_ps(__m128 V1, __m128 V2) { in test_mm_blend_ps() argument 24 return _mm_blend_ps(V1, V2, 6); in test_mm_blend_ps() 27 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) { in test_mm_blendv_epi8() argument 30 return _mm_blendv_epi8(V1, V2, V3); in test_mm_blendv_epi8() 33 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) { in test_mm_blendv_pd() argument 36 return _mm_blendv_pd(V1, V2, V3); in test_mm_blendv_pd() [all …]
|
/external/llvm/lib/Support/ |
D | FileUtilities.cpp | 85 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local 104 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); in CompareNumbers() 122 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); in CompareNumbers() 139 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers() 142 if (V2) in CompareNumbers() 143 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers() 145 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers() 151 << "Compared: " << V1 << " and " << V2 << '\n' in CompareNumbers() 152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
|
/external/opencv/cxcore/src/ |
D | cxjacobieigens.cpp | 111 float *A2 = A + n * (p + 1), *V2 = V + n * (p + 1); in icvJacobiEigens_32f() local 113 for( q = p + 1; q < n; q++, A2 += n, V2 += n ) in icvJacobiEigens_32f() 143 Vqi = V2[i]; in icvJacobiEigens_32f() 147 V2[i] = (float) (Vqi * c + Vpi * s); in icvJacobiEigens_32f() 154 Vqi = V2[i]; in icvJacobiEigens_32f() 158 V2[i] = (float) (Vqi * c + Vpi * s); in icvJacobiEigens_32f() 165 Vqi = V2[i]; in icvJacobiEigens_32f() 169 V2[i] = (float) (Vqi * c + Vpi * s); in icvJacobiEigens_32f() 223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V; in icvJacobiEigens_64d() local 262 V2 = V + n * (p + 1); in icvJacobiEigens_64d() [all …]
|
/external/easymock/src/org/easymock/ |
D | MockControl.java | 467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) { in expectAndReturn() 487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() 510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() 532 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() 610 public <V1, V2 extends V1> void expectAndDefaultReturn(V1 ignored, V2 value) { in expectAndDefaultReturn()
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t053heteroT9.g | 7 function V2() { 25 V2.superclass.constructor.call(this, token); 31 org.antlr.lang.extend(V2, org.antlr.runtime.tree.CommonTree, { 42 a : ID -> ID<V2>[42,19,30] ID<V2>[$ID,99];
|
/external/llvm/include/llvm/ADT/ |
D | APSInt.h | 328 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; } 329 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; } 330 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; } 331 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; } 332 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1; } 333 inline bool operator>(int64_t V1, const APSInt &V2) { return V2 < V1; }
|
/external/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 890 const AAMDNodes &V1AAInfo, const Value *V2, in aliasGEP() argument 901 if (const GEPOperator *GEP2 = dyn_cast<GEPOperator>(V2)) { in aliasGEP() 1000 AAMDNodes(), V2, V2Size, V2AAInfo); in aliasGEP() 1146 const Value *V2, uint64_t V2Size, in aliasSelect() argument 1150 if (const SelectInst *SI2 = dyn_cast<SelectInst>(V2)) in aliasSelect() 1165 aliasCheck(V2, V2Size, V2AAInfo, SI->getTrueValue(), SISize, SIAAInfo); in aliasSelect() 1170 aliasCheck(V2, V2Size, V2AAInfo, SI->getFalseValue(), SISize, SIAAInfo); in aliasSelect() 1177 const AAMDNodes &PNAAInfo, const Value *V2, in aliasPHI() argument 1187 if (const PHINode *PN2 = dyn_cast<PHINode>(V2)) in aliasPHI() 1190 MemoryLocation(V2, V2Size, V2AAInfo)); in aliasPHI() [all …]
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 371 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 373 return Create(Instruction::OPC, V1, V2, Name);\ 377 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 379 return Create(Instruction::OPC, V1, V2, Name, BB);\ 383 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 385 return Create(Instruction::OPC, V1, V2, Name, I);\ 389 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, 391 BinaryOperator *BO = Create(Opc, V1, V2, Name); 395 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, 397 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB); [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | apint-shl-trunc.ll | 6 ; CHECK: %[[V2:.*]] = and i39 %[[V1]], %X 7 ; CHECK: %[[V3:.*]] = icmp ne i39 %[[V2]], 0 18 ; CHECK: %[[V2:.*]] = and i799 %[[V1]], %X 19 ; CHECK: %[[V3:.*]] = icmp ne i799 %[[V2]], 0
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 727 Constant *V1, Constant *V2) { in ConstantFoldSelectInstruction() argument 729 if (Cond->isNullValue()) return V2; in ConstantFoldSelectInstruction() 740 Constant *V2Element = ConstantExpr::getExtractElement(V2, in ConstantFoldSelectInstruction() 761 return V2; in ConstantFoldSelectInstruction() 763 if (isa<UndefValue>(V1)) return V2; in ConstantFoldSelectInstruction() 764 if (isa<UndefValue>(V2)) return V1; in ConstantFoldSelectInstruction() 765 if (V1 == V2) return V1; in ConstantFoldSelectInstruction() 770 return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2); in ConstantFoldSelectInstruction() 772 if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) { in ConstantFoldSelectInstruction() 831 Constant *V2, in ConstantFoldShuffleVectorInstruction() argument [all …]
|
/external/clang/test/CodeGenCXX/ |
D | vtt-layout.cpp | 31 class V2 : public B1, public B2, public virtual V1 { int i; }; class 34 class C2 : public virtual V3, virtual V2 { int i; }; 50 class V2 : public B1, public B2, public virtual V1 { int i; }; class 53 class C2 : public virtual V3, virtual V2 { int i; };
|
D | microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp | 13 struct V2 { struct 15 virtual ~V2(); 25 struct V3 : Z, V2 { argument 28 struct V4 : Z, V1, V2 { 302 struct D : virtual V2 {
|
/external/llvm/unittests/Support/ |
D | AlignOfTest.cpp | 63 struct V2 { int x; virtual ~V2(); }; argument 67 struct V4 : virtual V2 { int y; 74 struct V7 : virtual V2, virtual V6 { 84 V2::~V2() {} in ~V2() 130 [AlignOf<V2>::Alignment > 0] 170 EXPECT_LE(alignOf<V1>(), alignOf<V2>()); in TEST() 248 EXPECT_EQ(alignOf<V2>(), alignOf<AlignedCharArrayUnion<V2> >()); in TEST() 313 EXPECT_EQ(sizeof(V2), sizeof(AlignedCharArrayUnion<V2>)); in TEST()
|
/external/llvm/test/Transforms/EarlyCSE/ |
D | basic.ll | 41 %V2 = load i32, i32* %P 42 %Diff = sub i32 %V1, %V2 51 %V2 = load i32, i32* %P 52 %Diff = sub i32 %V1, %V2 66 %V2 = load i32, i32* %P 67 %Diff = sub i32 %V1, %V2 82 %V2 = load i32, i32* %P 83 %Diff = sub i32 %V1, %V2 100 %V2 = load i32, i32* %P 101 %Diff = sub i32 %V1, %V2 [all …]
|
/external/selinux/scripts/ |
D | Lindent | 5 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2` 10 if [ $V2 -gt 2 ]; then 12 elif [ $V2 -eq 2 ]; then
|
/external/llvm/test/Analysis/BasicAA/ |
D | modref.ll | 157 %V2 = load i32, i32* %P 158 %Diff = sub i32 %V1, %V2 171 %V2 = load i32, i32* %P 172 %Diff = sub i32 %V1, %V2 184 %V2 = load i32, i32* %P 185 %Diff = sub i32 %V1, %V2 197 %V2 = load i32, i32* %P 198 %Diff = sub i32 %V1, %V2 210 %V2 = load i32, i32* %P 211 %Diff = sub i32 %V1, %V2 [all …]
|