Home
last modified time | relevance | path

Searched defs:combine (Results 1 – 25 of 1238) sorted by relevance

12345678910>>...50

/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/
H A Dall_reduce_combiner_test.cc123 AllReduceCombiner combine(10 * 1024 * 1024, kMaxCombineCount); in TEST_F() local
171 AllReduceCombiner combine(10 * 1024 * 1024, kMaxCombineCount); in TEST_F() local
193 AllReduceCombiner combine((8 + 4) * 1024 - 1, kMaxCombineCount); in TEST_F() local
203 AllReduceCombiner combine((8 + 4) * 1024, kMaxCombineCount); in TEST_F() local
230 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
259 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
295 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
340 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
370 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
410 AllReduceCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
[all …]
H A Dall_gather_combiner_test.cc75 AllGatherCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
111 AllGatherCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
147 AllGatherCombiner combine(255, kMaxCombineCount); in TEST_F() local
172 AllGatherCombiner combine(256, kMaxCombineCount); in TEST_F() local
193 AllGatherCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
218 AllGatherCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
249 AllGatherCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
289 AllGatherCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
313 AllGatherCombiner combine(1024 * 1024, kMaxCombineCount); in TEST_F() local
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
H A DZip.kt28 public fun <T1, T2, R> Flow<T1>.combine(flow: Flow<T2>, transform: suspend (a: T1, b: T2) -> R): Fl… in <lambda>() method
47 public fun <T1, T2, R> combine(flow: Flow<T1>, flow2: Flow<T2>, transform: suspend (a: T1, b: T2) -… in combine() method
110 public fun <T1, T2, T3, R> combine( in combine() method
146 public fun <T1, T2, T3, T4, R> combine( in combine() method
186 public fun <T1, T2, T3, T4, T5, R> combine( in combine() method
230 public inline fun <reified T, R> combine( in combine() method
279 public inline fun <reified T, R> combine( in combine() method
/aosp_15_r20/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DCollectAndSummaryStatisticsTest.java96 … IntSummaryStatistics::combine)); in testIntStatistics() field in CollectAndSummaryStatisticsTest.IntSummaryStatistics
104 … IntSummaryStatistics::combine)); in testIntStatistics() field in CollectAndSummaryStatisticsTest.IntSummaryStatistics
130 … LongSummaryStatistics::combine)); in testLongStatistics() field in CollectAndSummaryStatisticsTest.LongSummaryStatistics
138 … LongSummaryStatistics::combine)); in testLongStatistics() field in CollectAndSummaryStatisticsTest.LongSummaryStatistics
163 … DoubleSummaryStatistics::combine)); in testDoubleStatistics() field in CollectAndSummaryStatisticsTest.DoubleSummaryStatistics
171 … DoubleSummaryStatistics::combine)); in testDoubleStatistics() field in CollectAndSummaryStatisticsTest.DoubleSummaryStatistics
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DSharedReduceOps.h116 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
169 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
202 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
231 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
262 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
294 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
324 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
373 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
398 inline C10_DEVICE acc_t combine(acc_t a, acc_t b) const { in combine() function
461 static C10_DEVICE arg_t combine(arg_t a, arg_t b) { in combine() function
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/utils/kairos/src/com/android/systemui/kairos/
H A DTState.kt146 fun <A> Iterable<TState<A>>.combine(): TState<List<A>> { in combine() method
162 fun <K : Any, A> Map<K, TState<A>>.combine(): TState<Map<K, A>> { in combine() method
183 fun <A, B> Iterable<TState<A>>.combine(transform: suspend FrpScope.(List<A>) -> B): TState<B> = in combine() method
192 fun <A> combine(vararg states: TState<A>): TState<List<A>> = states.asIterable().combine() in combine() method
201 fun <A, B> combine( in combine() method
213 fun <A, B, Z> combine( in combine() method
244 fun <A, B, C, Z> combine( in combine() method
279 fun <A, B, C, D, Z> combine( in combine() method
322 fun <A, B, C, D, E, Z> combine( in combine() method
H A DFrpStateScope.kt713 fun <A, B, Z> combine( in <lambda>() method
729 fun <A, B, C, D, Z> combine( in <lambda>() method
755 fun <A, Z> combine( in <lambda>() method
767 fun <A, Z> Iterable<TState<A>>.combine( in <lambda>() method
/aosp_15_r20/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
H A DMutableAggregation.java66 abstract void combine(MutableAggregation other, double fraction); in combine() method in MutableAggregation
94 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableSumDouble
163 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableCount
212 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableMean
325 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableDistribution
477 void combine(MutableAggregation other, double fraction) { in combine() method in MutableAggregation.MutableLastValueDouble
/aosp_15_r20/external/rust/android-crates-io/crates/combine/
DREADME.md1 # combine chapter
76 ### Formats and protocols
86 ### Miscellaneous
/aosp_15_r20/tools/metalava/metalava/src/main/java/com/android/tools/metalava/cli/common/
H A DPreviouslyReleasedApi.kt40 fun combine(other: PreviouslyReleasedApi): PreviouslyReleasedApi in <lambda>() method
92 override fun combine(other: PreviouslyReleasedApi) = in load() method in com.android.tools.metalava.cli.common.SignatureBasedApi
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
H A DFlow.kt248 inline fun <T1, T2, T3, T4, T5, T6, R> combine( in combine() method
271 inline fun <T1, T2, T3, T4, T5, T6, T7, R> combine( in combine() method
296 inline fun <T1, T2, T3, T4, T5, T6, T7, T8, R> combine( in combine() method
323 inline fun <T1, T2, T3, T4, T5, T6, T7, T8, T9, R> combine( in combine() method
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/SystemUI-core/android_common/kapt/gen/stubs/com/android/systemui/util/kotlin/
DFlowKt.java185 ….lang.Object, R extends java.lang.Object>kotlinx.coroutines.flow.Flow<R> combine(@org.jetbrains.an… in combine() method in FlowKt
197 ….lang.Object, R extends java.lang.Object>kotlinx.coroutines.flow.Flow<R> combine(@org.jetbrains.an… in combine() method in FlowKt
210 ….lang.Object, R extends java.lang.Object>kotlinx.coroutines.flow.Flow<R> combine(@org.jetbrains.an… in combine() method in FlowKt
224 ….lang.Object, R extends java.lang.Object>kotlinx.coroutines.flow.Flow<R> combine(@org.jetbrains.an… in combine() method in FlowKt
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/conversion/include/boost/numeric/conversion/detail/
Dconverter.hpp230 struct combine struct
232 typedef applyBoth<PredA,PredB> Both ;
233 …edef void NNone ; // 'None' is defined as a macro in (/usr/X11R6/include/X11/X.h)
235 typedef typename PredA::do_apply do_applyA ;
236 typedef typename PredB::do_apply do_applyB ;
238 typedef typename for_both<do_applyA, do_applyB, Both, PredA, PredB, NNone>::type type ;
/aosp_15_r20/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/
H A DOpcode.java277 …RETURN_VOID_BARRIER(combine(firstApi(0xf1, 11), lastArtVersion(0x73, 59)), "return-void-barrier", … enumConstant
279 …IGET_QUICK(combine(allApis(0xf2), allArtVersions(0xe3)), "iget-quick", ReferenceType.NONE, Format… enumConstant
280 …IGET_WIDE_QUICK(combine(allApis(0xf3), allArtVersions(0xe4)), "iget-wide-quick", ReferenceType.NON… enumConstant
281 …IGET_OBJECT_QUICK(combine(allApis(0xf4), allArtVersions(0xe5)), "iget-object-quick", ReferenceType… enumConstant
282 …IPUT_QUICK(combine(allApis(0xf5), allArtVersions(0xe6)), "iput-quick", ReferenceType.NONE, Format… enumConstant
283 …IPUT_WIDE_QUICK(combine(allApis(0xf6), allArtVersions(0xe7)), "iput-wide-quick", ReferenceType.NON… enumConstant
284 …IPUT_OBJECT_QUICK(combine(allApis(0xf7), allArtVersions(0xe8)), "iput-object-quick", ReferenceType… enumConstant
294 …INVOKE_VIRTUAL_QUICK(combine(allApis(0xf8), allArtVersions(0xe9)), "invoke-virtual-quick", Referen… enumConstant
295 …INVOKE_VIRTUAL_QUICK_RANGE(combine(allApis(0xf9), allArtVersions(0xea)), "invoke-virtual-quick/ran… enumConstant
429 private static List<VersionConstraint> combine(List<VersionConstraint>... versionConstraints) { in combine() method in Opcode
/aosp_15_r20/external/libvpx/vp8/common/x86/
H A Dmfqe_sse2.asm50 .combine: label
127 .combine: label
/aosp_15_r20/external/libvpx/vp9/common/x86/
H A Dvp9_mfqe_sse2.asm51 .combine: label
128 .combine: label
/aosp_15_r20/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/flow/
H A DCombineFlowsBenchmark.kt20 fun combine() = runBlocking { in <lambda>() method
/aosp_15_r20/external/guava/guava/src/com/google/common/util/concurrent/
H A DCollectionFuture.java82 abstract C combine(List<@Nullable Present<V>> values); in combine() method in CollectionFuture
95 public List<@Nullable V> combine(List<@Nullable Present<V>> values) { in combine() method in CollectionFuture.ListFuture
/aosp_15_r20/external/guava/android/guava/src/com/google/common/util/concurrent/
H A DCollectionFuture.java82 abstract C combine(List<@Nullable Present<V>> values); in combine() method in CollectionFuture
95 public List<@Nullable V> combine(List<@Nullable Present<V>> values) { in combine() method in CollectionFuture.ListFuture
/aosp_15_r20/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotations.java51 public static Annotations combine(Annotations a1, Annotations a2) { in combine() method in Annotations
71 public static Annotations combine(Annotations annotations, in combine() method in Annotations
/aosp_15_r20/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotations.java52 public static Annotations combine(Annotations a1, Annotations a2) { in combine() method in Annotations
72 public static Annotations combine(Annotations annotations, in combine() method in Annotations
/aosp_15_r20/system/libhwbinder/vts/performance/
H A DPerfTest.cpp82 Results Results::combine(const Results& a, const Results& b) { in combine() function in Results
185 PResults PResults::combine(const PResults& a, const PResults& b) { in combine() function in PResults
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/hash/internal/
H A Dspy_hash_state.h72 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
81 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function
/aosp_15_r20/external/OpenCL-CTS/test_conformance/workgroups/
H A Dtest_wg_scan_reduce.cpp72 static T combine(T a, T b) { return a + b; } in combine() function
80 static T combine(T a, T b) { return std::max(a, b); } in combine() function
88 static T combine(T a, T b) { return std::min(a, b); } in combine() function
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/hash/internal/
Dspy_hash_state.h73 static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a, in combine() function
82 static SpyHashStateImpl combine(SpyHashStateImpl s) { in combine() function

12345678910>>...50