| /external/tensorflow/tensorflow/compiler/xla/service/ | 
| D | all_gather_combiner_test.cc | 75   AllGatherCombiner combine(1024 * 1024, kMaxCombineCount);  in TEST_F()  local111   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
 
 | 
| D | all_reduce_combiner_test.cc | 123   AllReduceCombiner combine(10 * 1024 * 1024, kMaxCombineCount);  in TEST_F()  local171   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 …]
 
 | 
| /external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/ | 
| D | Zip.kt | 32 public fun <T1, T2, R> Flow<T1>.combine(flow: Flow<T2>, transform: suspend (a: T1, b: T2) -> R): Fl…  in <lambda>()  method51 public fun <T1, T2, R> combine(flow: Flow<T1>, flow2: Flow<T2>, transform: suspend (a: T1, b: T2) -…  in combine()  method
 114 public fun <T1, T2, T3, R> combine(  in combine()  method
 150 public fun <T1, T2, T3, T4, R> combine(  in combine()  method
 190 public fun <T1, T2, T3, T4, T5, R> combine(  in combine()  method
 234 public inline fun <reified T, R> combine(  in combine()  method
 283 public inline fun <reified T, R> combine(  in combine()  method
 
 | 
| /external/rust/crates/combine/ | 
| D | README.md | 1 # combine  chapter77 ### Formats and protocols
 87 ### Miscellaneous
 
 | 
| /external/libvpx/vp9/common/x86/ | 
| D | vp9_mfqe_sse2.asm | 51 .combine:  label128 .combine:  label
 
 | 
| /external/libvpx/vp8/common/x86/ | 
| D | mfqe_sse2.asm | 50 .combine:  label127 .combine:  label
 
 | 
| /external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/flow/ | 
| D | CombineFlowsBenchmark.kt | 24     fun combine() = runBlocking {  in <lambda>()  method in benchmarks.flow.CombineFlowsBenchmark
 | 
| /external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/ | 
| D | MutableAggregation.java | 65   abstract void combine(MutableAggregation other, double fraction);  in combine()  method in MutableAggregation93     void combine(MutableAggregation other, double fraction) {  in combine()  method in MutableAggregation.MutableSumDouble
 162     void combine(MutableAggregation other, double fraction) {  in combine()  method in MutableAggregation.MutableCount
 211     void combine(MutableAggregation other, double fraction) {  in combine()  method in MutableAggregation.MutableMean
 335     void combine(MutableAggregation other, double fraction) {  in combine()  method in MutableAggregation.MutableDistribution
 507     void combine(MutableAggregation other, double fraction) {  in combine()  method in MutableAggregation.MutableLastValueDouble
 
 | 
| /external/guava/android/guava/src/com/google/common/util/concurrent/ | 
| D | CollectionFuture.java | 81   abstract C combine(List<@Nullable Present<V>> values);  in combine()  method in CollectionFuture94     public List<@Nullable V> combine(List<@Nullable Present<V>> values) {  in combine()  method in CollectionFuture.ListFuture
 
 | 
| /external/guava/guava/src/com/google/common/util/concurrent/ | 
| D | CollectionFuture.java | 81   abstract C combine(List<@Nullable Present<V>> values);  in combine()  method in CollectionFuture94     public List<@Nullable V> combine(List<@Nullable Present<V>> values) {  in combine()  method in CollectionFuture.ListFuture
 
 | 
| /external/libtextclassifier/abseil-cpp/absl/hash/internal/ | 
| D | spy_hash_state.h | 72   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function81   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| D | hash.h | 164   static H combine(H state) { return state; }  in combine()  function
 | 
| /external/openscreen/third_party/abseil/src/absl/hash/internal/ | 
| D | spy_hash_state.h | 72   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function81   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| D | hash.h | 164   static H combine(H state) { return state; }  in combine()  function
 | 
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/hash/internal/ | 
| D | spy_hash_state.h | 72   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function81   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| D | hash.h | 166   static H combine(H state) { return state; }  in combine()  function
 | 
| /external/python/cpython2/Tools/scripts/ | 
| D | combinerefs.py | 88 def combine(fname):  function
 | 
| /external/python/cpython3/Tools/scripts/ | 
| D | combinerefs.py | 124 def combine(fname):  function
 | 
| /external/tensorflow/third_party/absl/abseil-cpp/absl/hash/internal/ | 
| D | spy_hash_state.h | 73   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function82   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| /external/webrtc/third_party/abseil-cpp/absl/hash/internal/ | 
| D | spy_hash_state.h | 73   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function82   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| /external/angle/third_party/abseil-cpp/absl/hash/internal/ | 
| D | spy_hash_state.h | 73   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function82   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| /external/cronet/third_party/abseil-cpp/absl/hash/internal/ | 
| D | spy_hash_state.h | 73   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function82   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| /external/abseil-cpp/absl/hash/internal/ | 
| D | spy_hash_state.h | 73   static SpyHashStateImpl combine(SpyHashStateImpl s, const A& a,  in combine()  function82   static SpyHashStateImpl combine(SpyHashStateImpl s) {  in combine()  function
 
 | 
| /external/tensorflow/tensorflow/python/framework/ | 
| D | combinations.py | 79 combine = test_combinations.combine  variable
 | 
| /external/rust/crates/crc32fast/src/ | 
| D | lib.rs | 58 mod combine;  module163     pub fn combine(&mut self, other: &Self) {  in combine()  method
 
 |