Home
last modified time | relevance | path

Searched refs:next_output (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/futures-util/src/stream/
Dfutures_ordered.rs164 if let Some(next_output) = this.queued_outputs.peek_mut() { in poll_next()
165 if next_output.index == this.next_outgoing_index { in poll_next()
167 return Poll::Ready(Some(PeekMut::pop(next_output).data)); in poll_next()
/external/tensorflow/tensorflow/python/ops/
Drnn.py1180 (next_output, cell_state) = cell(current_input, state)
1183 nest.assert_same_structure(cell.output_size, next_output)
1187 next_loop_state) = loop_fn(next_time, next_output, cell_state,
/external/tensorflow/tensorflow/lite/toco/
Dimport_tensorflow.cc604 int next_output = 0; in GetOutputNamesFromNodeDef() local
605 auto add_output = [&node, &next_output, op]() { in GetOutputNamesFromNodeDef()
606 if (next_output == 0) { in GetOutputNamesFromNodeDef()
609 op->outputs.push_back(absl::StrCat(node.name(), ":", next_output)); in GetOutputNamesFromNodeDef()
611 ++next_output; in GetOutputNamesFromNodeDef()