HomeSort by relevance Sort by last modified time
    Searched refs:new_output (Results 1 - 10 of 10) sorted by null

  /external/webrtc/talk/media/base/
videoadapter.cc 605 VideoFormat new_output = output_format(); local
608 input = new_output;
616 new_output.width = static_cast<int>(input.width * scale + .5f);
617 new_output.height = static_cast<int>(input.height * scale + .5f);
618 int new_pixels = new_output.width * new_output.height;
626 VideoFormat new_output = output_format(); local
629 input = new_output;
676 *new_width = new_output.width = static_cast<int>(input.width * scale + .5f);
677 *new_height = new_output.height = static_cast<int>(input.height * scale
    [all...]
  /external/autotest/server/site_tests/enterprise_CFM_USBPeripheralRebootStress/
enterprise_CFM_USBPeripheralRebootStress.py 63 new_output = self._host.run(CMD).stdout.rstrip()
64 new_list= new_output.splitlines()
  /external/tensorflow/tensorflow/contrib/grid_rnn/python/ops/
grid_rnn_cell.py 182 new_output = [None] * conf.num_dims
192 new_output, new_state, True)
194 c_prev, m_prev, new_output, new_state, False)
197 output_tensors = [new_output[i] for i in self._config.outputs]
608 def _propagate(dim_indices, conf, cells, c_prev, m_prev, new_output, new_state,
622 if new_output[d.idx] is None:
625 ls_cell_inputs[d.idx] = new_output[d.idx]
631 last_dim_output = (new_output[-1]
632 if new_output[-1] is not None else m_prev[-1])
646 new_output[d.idx] = layers.fully_connected
    [all...]
  /external/tensorflow/tensorflow/python/ops/
rnn.py 163 new_output, new_state = call_cell()
166 for r, new_output_r in enumerate(new_output)
182 call_cell: lambda returning tuple of (new_output, new_state) where
183 new_output is a `Tensor` matrix of shape `[batch_size, output_size]`.
209 def _copy_one_through(output, new_output):
212 return new_output
214 return new_output
216 with ops.colocate_with(new_output):
217 return array_ops.where(copy_cond, output, new_output)
224 _copy_one_through(zero_output, new_output)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 105 void rc_move_output(struct radeon_compiler * c, unsigned output, unsigned new_output, unsigned writemask);
radeon_compiler.c 169 * output register will instead write to new_output. The new_output
172 void rc_move_output(struct radeon_compiler * c, unsigned output, unsigned new_output, unsigned writemask)
183 inst->U.I.DstReg.Index = new_output;
186 c->Program.OutputsWritten |= 1 << new_output;
  /external/adhd/cras/src/server/
cras_alsa_io.c 1116 static struct alsa_output_node *new_output(struct alsa_io *aio, function
1172 new_output(aio, cras_output, node_name);
1174 new_output(aio, cras_output, ctl_name);
    [all...]
  /external/python/cpython3/Modules/
unicodedata.c 527 Py_UCS4 *new_output; local
530 new_output = PyMem_Realloc(output, osize*sizeof(Py_UCS4));
531 if (new_output == NULL) {
536 output = new_output;
    [all...]
  /external/v8/src/ast/
prettyprinter.cc 487 char* new_output = NewArray<char>(new_size); local
488 MemCopy(new_output, output_, pos_);
490 output_ = new_output;
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
rnn_cell.py     [all...]

Completed in 217 milliseconds