Home
last modified time | relevance | path

Searched refs:V2 (Results 1 – 25 of 721) sorted by relevance

12345678910>>...29

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dllvm.amdgcn.workgroup.id.ll1 … -verify-machineinstrs < %s | FileCheck -check-prefix=ALL -check-prefix=CO-V2 -check-prefix=CI-HSA…
2 … -verify-machineinstrs < %s | FileCheck -check-prefix=ALL -check-prefix=CO-V2 -check-prefix=VI-HSA…
5 …own-mesa3d -mcpu=tahiti -verify-machineinstrs < %s | FileCheck -check-prefixes=ALL,CO-V2,SI-MESA %s
6 …nown-mesa3d -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefixes=ALL,CO-V2,VI-MESA %s
14 ; CO-V2: .amd_kernel_code_t
15 ; CO-V2: user_sgpr_count = 6
16 ; CO-V2: enable_sgpr_workgroup_id_x = 1
17 ; CO-V2: enable_sgpr_workgroup_id_y = 0
18 ; CO-V2: enable_sgpr_workgroup_id_z = 0
19 ; CO-V2: enable_sgpr_workgroup_info = 0
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DTinyPtrVectorTest.cpp34 VectorT V2; member in __anon525a065b0111::TinyPtrVectorTest
58 V2.clear(); in setVectors()
59 appendValues(V2, Values2); in setVectors()
147 TypeParam Copy2(this->V2); in TYPED_TEST()
150 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST()
164 this->V = this->V2; in TYPED_TEST()
166 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST()
167 this->V = std::move(this->V2); in TYPED_TEST()
171 this->V = this->V2; in TYPED_TEST()
173 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST()
[all …]
/external/llvm/unittests/ADT/
DTinyPtrVectorTest.cpp40 VectorT V2; member in __anon186813230111::TinyPtrVectorTest
64 V2.clear(); in setVectors()
65 appendValues(V2, Values2); in setVectors()
153 TypeParam Copy2(this->V2); in TYPED_TEST()
156 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST()
164 this->V = this->V2; in TYPED_TEST()
166 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST()
167 this->V = std::move(this->V2); in TYPED_TEST()
171 this->V = this->V2; in TYPED_TEST()
173 this->expectValues(this->V2, this->testArray(0)); in TYPED_TEST()
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp147 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/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/tags/
DTagContextImplTest.java56 private static final TagValue V2 = TagValue.create("v2"); field in TagContextImplTest
68 TagContextImpl tags = new TagContextImpl(ImmutableMap.of(K1, V1, K2, V2)); in getTags_nonEmpty()
69 assertThat(tags.getTags()).containsExactly(K1, V1, K2, V2); in getTags_nonEmpty()
75 assertThat(((TagContextImpl) tagger.toBuilder(tags).put(K2, V2).build()).getTags()) in put_newKey()
76 .containsExactly(K1, V1, K2, V2); in put_newKey()
82 assertThat(((TagContextImpl) tagger.toBuilder(tags).put(K1, V2).build()).getTags()) in put_existingKey()
83 .containsExactly(K1, V2); in put_existingKey()
92 builder.put(null, V2); in put_nullKey()
106 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1, K2, V2)); in remove_existingKey()
108 .containsExactly(K2, V2); in remove_existingKey()
[all …]
/external/mesa3d/src/amd/addrlib/
Daddrinterface.cpp1097 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeSurfaceInfo()
1130 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeSurfaceAddrFromCoord()
1163 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeSurfaceCoordFromAddr()
1201 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeHtileInfo()
1234 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeHtileAddrFromCoord()
1268 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeHtileCoordFromAddr()
1307 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeCmaskInfo()
1340 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeCmaskAddrFromCoord()
1374 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeCmaskCoordFromAddr()
1412 V2::Lib* pLib = V2::Lib::GetLib(hLib); in Addr2ComputeFmaskInfo()
[all …]
/external/guava/guava/src/com/google/common/collect/
DTables.java332 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 …]
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> {
1178 final EntryTransformer<? super K, ? super V1, V2> transformer;
1181 final EntryTransformer<? super K, ? super V1, V2> transformer) {
[all …]
DMaps.java1492 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/swiftshader/third_party/LLVM/include/llvm/
DInstrTypes.h178 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
180 return Create(Instruction::OPC, V1, V2, Name);\
184 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
186 return Create(Instruction::OPC, V1, V2, Name, BB);\
190 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
192 return Create(Instruction::OPC, V1, V2, Name, I);\
196 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2,
198 BinaryOperator *BO = Create(Opc, V1, V2, Name);
202 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2,
204 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB);
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
Dvec_perf_shuffle.ll5 %V2 = load <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>* %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>* %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>* %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>* %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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dvec_perf_shuffle.ll5 %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/PowerPC/
Dvec_perf_shuffle.ll5 %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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/BPF/
Dsetcc.ll2 ; RUN: llc -march=bpfel -mcpu=v2 < %s | FileCheck --check-prefix=CHECK-V2 %s
12 ; CHECK-V2: if r1 == 0
22 ; CHECK-V2: if r1 != 0
31 ; CHECK-V2: if r1 != r2
40 ; CHECK-V2: if r1 == r2
49 ; CHECK-V2: if r1 > r2
58 ; CHECK-V2: if r1 >= r2
67 ; CHECK-V2: if r1 < r2
76 ; CHECK-V2: if r1 <= r2
85 ; CHECK-V2: if r1 s> r2
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
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> {
1089 final EntryTransformer<? super K, ? super V1, V2> transformer;
1092 final EntryTransformer<? super K, ? super V1, V2> transformer) {
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dfp_load_cast_fold.ll5 %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/clang/test/CodeGen/
Dsse41-builtins.c11 __m128i test_mm_blend_epi16(__m128i V1, __m128i V2) { in test_mm_blend_epi16() argument
14 return _mm_blend_epi16(V1, V2, 42); in test_mm_blend_epi16()
17 __m128d test_mm_blend_pd(__m128d V1, __m128d V2) { in test_mm_blend_pd() argument
20 return _mm_blend_pd(V1, V2, 2); in test_mm_blend_pd()
23 __m128 test_mm_blend_ps(__m128 V1, __m128 V2) { in test_mm_blend_ps() argument
26 return _mm_blend_ps(V1, V2, 6); in test_mm_blend_ps()
29 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) { in test_mm_blendv_epi8() argument
32 return _mm_blendv_epi8(V1, V2, V3); in test_mm_blendv_epi8()
35 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) { in test_mm_blendv_pd() argument
38 return _mm_blendv_pd(V1, V2, V3); in test_mm_blendv_pd()
[all …]
/external/llvm/test/CodeGen/X86/
Dfp_load_cast_fold.ll5 %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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dfp_load_cast_fold.ll5 %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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DInstrTypes.h368 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
370 return Create(Instruction::OPC, V1, V2, Name);\
374 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
376 return Create(Instruction::OPC, V1, V2, Name, BB);\
380 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
382 return Create(Instruction::OPC, V1, V2, Name, I);\
387 Value *V1, Value *V2,
390 BinaryOperator *BO = Create(Opc, V1, V2, Name);
395 static BinaryOperator *CreateFAddFMF(Value *V1, Value *V2,
398 return CreateWithCopiedFlags(Instruction::FAdd, V1, V2, FMFSource, Name);
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DFileUtilities.cpp89 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local
108 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); in CompareNumbers()
126 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); in CompareNumbers()
143 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers()
146 if (V2) in CompareNumbers()
147 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers()
149 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers()
155 << "Compared: " << V1 << " and " << V2 << '\n' in CompareNumbers()
156 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
/external/swiftshader/third_party/LLVM/lib/Support/
DFileUtilities.cpp86 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local
105 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); in CompareNumbers()
123 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); in CompareNumbers()
140 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers()
143 if (V2) in CompareNumbers()
144 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers()
146 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers()
152 << "Compared: " << V1 << " and " << V2 << '\n' in CompareNumbers()
153 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
/external/llvm/lib/Support/
DFileUtilities.cpp85 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/libxaac/decoder/armv8/
Dixheaacd_overlap_add1.s81 LD2 {V2.4H, V3.4H}, [X8], X12
83 REV64 V2.4H, V2.4H
95 UMULL V15.4S, V7.4H, V2.4H
99 SMLAL V15.4S, V6.4H, V2.4H
120 SSHLL V27.4S, V2.4H, #0
140 LD2 {V2.4H, V3.4H}, [X8], X12
142 REV64 V2.4H, V2.4H
153 UMULL V15.4S, V7.4H, V2.4H
161 SMLAL V15.4S, V6.4H, V2.4H
177 SSHLL V27.4S, V2.4H, #0
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DBasicAliasAnalysis.cpp529 const Value *V2, uint64_t V2Size,
537 const Value *V2, uint64_t V2Size,
543 const Value *V2, uint64_t V2Size,
548 const Value *V2, uint64_t V2Size,
854 const Value *V2, uint64_t V2Size, in aliasGEP() argument
863 if (const GEPOperator *GEP2 = dyn_cast<GEPOperator>(V2)) { in aliasGEP()
907 V2, V2Size, V2TBAAInfo); in aliasGEP()
1006 const Value *V2, uint64_t V2Size, in aliasSelect() argument
1010 if (const SelectInst *SI2 = dyn_cast<SelectInst>(V2)) in aliasSelect()
1026 aliasCheck(V2, V2Size, V2TBAAInfo, SI->getTrueValue(), SISize, SITBAAInfo); in aliasSelect()
[all …]

12345678910>>...29