Home
last modified time | relevance | path

Searched refs:V1 (Results 1 – 25 of 737) sorted by relevance

12345678910>>...30

/external/grpc-grpc/src/csharp/Grpc.HealthCheck/
DHealthGrpc.cs28 namespace Grpc.Health.V1 {
33V1.HealthCheckRequest> __Marshaller_grpc_health_v1_HealthCheckRequest = grpc::Marshallers.Create((…
34V1.HealthCheckResponse> __Marshaller_grpc_health_v1_HealthCheckResponse = grpc::Marshallers.Create…
36V1.HealthCheckRequest, global::Grpc.Health.V1.HealthCheckResponse> __Method_Check = new grpc::Meth…
46 get { return global::Grpc.Health.V1.HealthReflection.Descriptor.Services[0]; }
52 …::System.Threading.Tasks.Task<global::Grpc.Health.V1.HealthCheckResponse> Check(global::Grpc.Healt… in Check()
82 …public virtual global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheck… in Check()
86 …public virtual global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheck… in Check()
90 …irtual grpc::AsyncUnaryCall<global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global::Grpc.He… in CheckAsync()
94 …irtual grpc::AsyncUnaryCall<global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global::Grpc.He… in CheckAsync()
/external/mesa3d/src/amd/addrlib/
Daddrinterface.cpp120 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeSurfaceInfo()
154 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeSurfaceAddrFromCoord()
186 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeSurfaceCoordFromAddr()
224 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeHtileInfo()
256 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeHtileAddrFromCoord()
289 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeHtileCoordFromAddr()
328 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeCmaskInfo()
360 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeCmaskAddrFromCoord()
393 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeCmaskCoordFromAddr()
431 V1::Lib* pLib = V1::Lib::GetLib(hLib); in AddrComputeFmaskInfo()
[all …]
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/tags/
DTagContextImplTest.java55 private static final TagValue V1 = TagValue.create("v1"); 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()
74 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1)); in put_newKey()
76 .containsExactly(K1, V1, K2, V2); in put_newKey()
81 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1)); in put_existingKey()
88 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1)); in put_nullKey()
97 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1)); in put_nullValue()
106 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1, K2, V2)); in remove_existingKey()
113 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1)); in remove_differentKey()
[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()
159 return &getValue( V1 / V2 ); in evalAPSInt()
164 return &getValue( V1 % V2 ); in evalAPSInt()
167 return &getValue( V1 + V2 ); in evalAPSInt()
170 return &getValue( V1 - V2 ); in evalAPSInt()
184 if (Amt >= V1.getBitWidth()) in evalAPSInt()
187 return &getValue( V1.operator<<( (unsigned) Amt )); in evalAPSInt()
202 if (Amt >= V1.getBitWidth()) in evalAPSInt()
205 return &getValue( V1.operator>>( (unsigned) Amt )); in evalAPSInt()
[all …]
/external/autotest/site_utils/stable_images/
Dbuild_data_unittest.py100 V1 = 'R66-10452.30.0' variable in GetOmahaUpgradeTests
106 {'board': self.V0}, 'board', self.V1)
107 self.assertEquals(new_version, self.V1)
112 {'board': self.V1}, 'board', self.V0)
113 self.assertEquals(new_version, self.V1)
118 {'board': self.V1}, 'board', self.V2)
124 {'board': self.V1}, 'board', self.V1)
125 self.assertEquals(new_version, self.V1)
135 {omaha_board: self.V1}, afe_board, self.V0)
136 self.assertEquals(new_version, self.V1)
[all …]
/external/guava/guava/src/com/google/common/cache/
DCacheBuilder.java475 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher( in weigher()
476 Weigher<? super K1, ? super V1> weigher) { in weigher()
485 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; in weigher()
499 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() { in getWeigher()
500 return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE); in getWeigher()
735 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> removalListener( in removalListener()
736 RemovalListener<? super K1, ? super V1> listener) { in removalListener()
741 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; in removalListener()
748 <K1 extends K, V1 extends V> RemovalListener<K1, V1> getRemovalListener() { in getRemovalListener()
749 return (RemovalListener<K1, V1>) in getRemovalListener()
[all …]
/external/easymock/src/org/easymock/
DMockControl.java467 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/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/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DCacheBuilder.java352 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() { in getWeigher()
353 return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE); in getWeigher()
490 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> removalListener( in removalListener()
491 RemovalListener<? super K1, ? super V1> listener) { in removalListener()
496 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; in removalListener()
503 <K1 extends K, V1 extends V> RemovalListener<K1, V1> getRemovalListener() { in getRemovalListener()
504 return (RemovalListener<K1, V1>) in getRemovalListener()
541 public <K1 extends K, V1 extends V> LoadingCache<K1, V1> build( in build()
542 CacheLoader<? super K1, V1> loader) { in build()
544 return new LocalCache.LocalLoadingCache<K1, V1>(this, loader); in build()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/EarlyCSE/
Dbasic.ll40 %V1 = load i32, i32* %P
42 %Diff = sub i32 %V1, %V2
49 %V1 = load i32, i32* %P
52 %Diff = sub i32 %V1, %V2
60 %V1 = load i32, i32* %P
67 %Diff = sub i32 %V1, %V2
75 %V1 = load i32, i32* %P
83 %Diff = sub i32 %V1, %V2
92 %V1 = load i32, i32* %P
97 ; Clobbers V1
[all …]
/external/llvm/test/Transforms/EarlyCSE/
Dbasic.ll39 %V1 = load i32, i32* %P
41 %Diff = sub i32 %V1, %V2
48 %V1 = load i32, i32* %P
51 %Diff = sub i32 %V1, %V2
59 %V1 = load i32, i32* %P
66 %Diff = sub i32 %V1, %V2
74 %V1 = load i32, i32* %P
82 %Diff = sub i32 %V1, %V2
91 %V1 = load i32, i32* %P
96 ; Clobbers V1
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
Dvec_perf_shuffle.ll4 %V1 = load <4 x float>* %P1 ; <<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…
11 %V1 = load <4 x float>* %P1 ; <<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 >…
18 %V1 = load <4 x float>* %P1 ; <<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 >…
25 %V1 = load <4 x float>* %P1 ; <<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 > ; …
32 %V1 = load <4 x float>* %P1 ; <<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/test/Transforms/EarlyCSE/
Dbasic.ll38 %V1 = load i32* %P
40 %Diff = sub i32 %V1, %V2
48 %V1 = load i32* %P
55 %Diff = sub i32 %V1, %V2
64 %V1 = load i32* %P
69 ; Clobbers V1
73 %Diff = sub i32 %V1, %V2
84 %V1 = call i32 @func(i32* %P)
86 %Diff = sub i32 %V1, %V2
95 %V1 = load i32* %P
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dvec_perf_shuffle.ll4 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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…
11 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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 >…
18 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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 >…
25 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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 > ; …
32 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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.ll4 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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…
11 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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 >…
18 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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 >…
25 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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 > ; …
32 %V1 = load <4 x float>, <4 x float>* %P1 ; <<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.ll1 ; RUN: llc -march=bpfel < %s | FileCheck --check-prefix=CHECK-V1 %s
11 ; CHECK-V1: if r1 == 0
21 ; CHECK-V1: if r1 != 0
30 ; CHECK-V1: if r1 != r2
39 ; CHECK-V1: if r1 == r2
48 ; CHECK-V1: if r1 > r2
57 ; CHECK-V1: if r1 >= r2
66 ; CHECK-V1: if r2 > r1
75 ; CHECK-V1: if r2 >= r1
84 ; CHECK-V1: if r1 s> r2
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dcall-guard.ll36 define void @test_guard_adjacent_diff_cond2(i32 %V1, i32 %V2) {
38 ; CHECK-NEXT: %1 = and i32 %V1, %V2
40 ; CHECK-NEXT: %and = and i32 %V1, 255
45 %A = icmp slt i32 %V1, 0
49 %and = and i32 %V1, 255
57 define void @negative_load(i32 %V1, i32* %P) {
61 %A = icmp slt i32 %V1, 0
69 define void @deref_load(i32 %V1, i32* dereferenceable(4) %P) {
72 ; CHECK-NEXT: %1 = and i32 %V2, %V1
75 %A = icmp slt i32 %V1, 0
[all …]
/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/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/clang/test/CodeGenCXX/
Dvtt-layout.cpp28 class V1 : public A1, public A2 { int i; }; class
31 class V2 : public B1, public B2, public virtual V1 { int i; };
33 class C1 : public virtual V1 { int i; };
47 class V1 : public A1, public virtual A2 { int i; }; class
50 class V2 : public B1, public B2, public virtual V1 { int i; };
52 class C1 : public virtual V1 { int i; };
/external/libxaac/decoder/armv8/
Dixheaacd_sbr_imdct_using_fft.s106 LD2 {V0.S, V1.S}[0], [X5], X1
117 LD2 {V0.S, V1.S}[1], [X6] , X1
129 LD2 {V0.S, V1.S}[2], [X7] , X1
136 LD2 {V0.S, V1.S}[3], [X11] , X1
152 ADD V0.4S, V1.4S, V5.4S
156 SUB V4.4S, V1.4S, V5.4S
168 ADD V1.4S, V2.4S, V6.4S
195 ADD V4.4S, V8.4S, V1.4S
198 SUB V5.4S, V8.4S, V1.4S
208 LD2 {V1.S, V2.S}[0], [X5], X1
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DFileUtilities.cpp89 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local
107 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers()
116 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers()
143 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers()
147 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers()
148 else if (V1) 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/llvm/lib/Support/
DFileUtilities.cpp85 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local
103 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers()
112 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers()
139 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers()
143 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers()
144 else if (V1) 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/swiftshader/third_party/LLVM/lib/Support/
DFileUtilities.cpp86 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local
104 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers()
113 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers()
140 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers()
144 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers()
145 else if (V1) 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/Target/SystemZ/
DSystemZInstrFormats.td579 bits<5> V1;
584 let Inst{39-36} = V1{3-0};
588 let Inst{11} = V1{4};
598 bits<5> V1;
604 let Inst{39-36} = V1{3-0};
609 let Inst{11} = V1{4};
619 bits<5> V1;
625 let Inst{39-36} = V1{3-0};
629 let Inst{11} = V1{4};
640 bits<5> V1;
[all …]

12345678910>>...30