/external/rust/crates/rayon/src/iter/ |
D | map.rs | 17 map_op: F, field 31 pub(super) fn new(base: I, map_op: F) -> Self { in new() 32 Map { base, map_op } in new() 48 let consumer1 = MapConsumer::new(consumer, &self.map_op); in drive_unindexed() 67 let consumer1 = MapConsumer::new(consumer, &self.map_op); in drive() 81 map_op: self.map_op, in with_producer() 86 map_op: F, in with_producer() field 103 map_op: &self.map_op, in with_producer() 115 map_op: &'f F, field 128 self.base.into_iter().map(self.map_op) in into_iter() [all …]
|
D | map_with.rs | 17 map_op: F, field 34 pub(super) fn new(base: I, item: T, map_op: F) -> Self { in new() 35 MapWith { base, item, map_op } in new() 52 let consumer1 = MapWithConsumer::new(consumer, self.item, &self.map_op); in drive_unindexed() 72 let consumer1 = MapWithConsumer::new(consumer, self.item, &self.map_op); in drive() 87 map_op: self.map_op, in with_producer() 93 map_op: F, in with_producer() field 112 map_op: &self.map_op, in with_producer() 125 map_op: &'f F, field 142 map_op: self.map_op, in into_iter() [all …]
|
D | flat_map_iter.rs | 15 map_op: F, field 28 pub(super) fn new(base: I, map_op: F) -> Self { in new() 29 FlatMapIter { base, map_op } in new() 46 let consumer = FlatMapIterConsumer::new(consumer, &self.map_op); in drive_unindexed() 56 map_op: &'f F, field 60 fn new(base: C, map_op: &'f F) -> Self { in new() 61 FlatMapIterConsumer { base, map_op } in new() 78 FlatMapIterConsumer::new(left, self.map_op), in split_at() 79 FlatMapIterConsumer::new(right, self.map_op), in split_at() 87 map_op: self.map_op, in into_folder() [all …]
|
D | flat_map.rs | 15 map_op: F, field 26 pub(super) fn new(base: I, map_op: F) -> Self { in new() 27 FlatMap { base, map_op } in new() 43 let consumer = FlatMapConsumer::new(consumer, &self.map_op); in drive_unindexed() 53 map_op: &'f F, field 57 fn new(base: C, map_op: &'f F) -> Self { in new() 58 FlatMapConsumer { base, map_op } in new() 75 FlatMapConsumer::new(left, self.map_op), in split_at() 76 FlatMapConsumer::new(right, self.map_op), in split_at() 84 map_op: self.map_op, in into_folder() [all …]
|
D | mod.rs | 584 fn map<F, R>(self, map_op: F) -> Map<Self, F> in map() 589 Map::new(self, map_op) in map() 621 fn map_with<F, T, R>(self, init: T, map_op: F) -> MapWith<Self, T, F> in map_with() 627 MapWith::new(self, init, map_op) in map_with() 658 fn map_init<F, INIT, T, R>(self, init: INIT, map_op: F) -> MapInit<Self, INIT, F> in map_init() 664 MapInit::new(self, init, map_op) in map_init() 846 fn flat_map<F, PI>(self, map_op: F) -> FlatMap<Self, F> in flat_map() 851 FlatMap::new(self, map_op) in flat_map() 892 fn flat_map_iter<F, SI>(self, map_op: F) -> FlatMapIter<Self, F> in flat_map_iter() 898 FlatMapIter::new(self, map_op) in flat_map_iter()
|
/external/tensorflow/tensorflow/python/training/ |
D | input.py | 389 def __init__(self, sparse, map_op, rank): argument 400 self._map_op = map_op 409 if (self.map_op is not None) != (other.map_op is not None): 411 if self.map_op != other.map_op: 421 return "[SparseMetaData(%s, %s, %s)]" % (self.sparse, self.map_op.name, 433 def map_op(self): member in _SparseMetaData 511 def _sparse_meta_data(t, storing_op, map_op): argument 520 sparse=True, map_op=map_op or storing_op, rank=rank) 588 [st.map_op for st in sparse_info_list]) 606 _restore_sparse(sparse_map_op=info.map_op,
|
/external/rust/crates/rayon/src/iter/plumbing/ |
D | README.md | 169 map_op: &'f F, 177 let map_op = &self.map_op; 183 map_op: map_op 199 example, the parallel iterator owns the `map_op`, and we borrow 235 let map_op = &self.map_op; 283 return self.base.with_producer(Callback { callback: callback, map_op: self.map_op }); 292 map_op: F, 307 map_op: &self.map_op };
|
/external/mesa3d/src/broadcom/qpu/ |
D | qpu_pack.c | 724 uint32_t map_op = op; in v3d_qpu_add_unpack() local 728 if (map_op >= 249 && map_op <= 251) in v3d_qpu_add_unpack() 729 map_op = (map_op - 249 + 245); in v3d_qpu_add_unpack() 730 if (map_op >= 253 && map_op <= 255) in v3d_qpu_add_unpack() 731 map_op = (map_op - 253 + 245); in v3d_qpu_add_unpack() 735 map_op, mux_a, mux_b); in v3d_qpu_add_unpack()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | scan_ops_gpu.h | 193 MapIndexToLocation map_op(dimx, dimy, dimz, reverse); in __launch_bounds__() 210 MapIterType map_iter(counting_iter, map_op); in __launch_bounds__()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | map_vectorization_test.cc | 176 void CheckNotVectorized(const GraphDef& output, const string& map_op, in CheckNotVectorized() argument 178 ASSERT_EQ(graph_utils::FindAllGraphNodesWithOp(map_op, output).size(), 1); in CheckNotVectorized() 181 output.node(graph_utils::FindGraphNodeWithOp(map_op, output)); in CheckNotVectorized()
|
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/ |
D | mhlo_to_lhlo_with_xla.cc | 960 TF_ASSIGN_OR_RETURN(auto map_op, CreateOpWithoutAttrs<lmhlo::MapOp>(instr)); in EmitMapOp() 964 map_op.dimensionsAttr(GetI64DenseElementsAttr(dimensions)); in EmitMapOp() 966 *instr->called_computations()[0], &map_op.computation(), &builder_)); in EmitMapOp() 967 return map_op; in EmitMapOp()
|