Searched refs:first_output (Results 1 - 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_idct.h84 unsigned first_output, struct ureg_dst tex);
H A Dvl_mc.h70 unsigned first_output,
H A Dvl_idct.c394 unsigned first_output, struct ureg_dst tex)
406 --first_output;
408 o_l_addr[0] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_L_ADDR0);
409 o_l_addr[1] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_L_ADDR1);
411 o_r_addr[0] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_R_ADDR0);
412 o_r_addr[1] = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output + VS_O_R_ADDR1);
393 vl_idct_stage2_vert_shader(struct vl_idct *idct, struct ureg_program *shader, unsigned first_output, struct ureg_dst tex) argument
H A Dvl_mpeg12_decoder.c1066 unsigned first_output,
1077 vl_idct_stage2_vert_shader(idct, shader, first_output, tex);
1079 o_vtex = ureg_DECL_output(shader, TGSI_SEMANTIC_GENERIC, first_output);
1064 mc_vert_shader_callback(void *priv, struct vl_mc *mc, struct ureg_program *shader, unsigned first_output, struct ureg_dst tex) argument
/external/tensorflow/tensorflow/core/kernels/
H A Dspectrogram_test.cc212 std::vector<std::vector<complex<double>>> first_output; local
215 sgram.ComputeComplexSpectrogram(input, &first_output);
220 ASSERT_EQ(first_output.size(), second_output.size());
221 int slice_size = first_output[0].size();
222 for (int i = 0; i < first_output.size(); ++i) {
223 ASSERT_EQ(slice_size, first_output[i].size());
226 ASSERT_EQ(first_output[i][j], second_output[i][j]);
/external/v8/src/crankshaft/
H A Dlithium-allocator.cc786 LUnallocated* first_output = LUnallocated::cast(first->Output()); local
787 LiveRange* range = LiveRangeFor(first_output->virtual_register());
789 if (first_output->HasFixedPolicy()) {
790 LUnallocated* output_copy = first_output->CopyUnconstrained(
792 bool is_tagged = HasTaggedValue(first_output->virtual_register());
793 AllocateFixed(first_output, gap_index, is_tagged);
796 if (first_output->IsStackSlot()) {
797 range->SetSpillOperand(first_output);
801 chunk_->AddGapMove(gap_index, first_output, output_copy);
814 move->AddMove(first_output, rang
[all...]
/external/v8/src/compiler/
H A Dregister-allocator.cc1715 UnallocatedOperand* first_output = UnallocatedOperand::cast(output); local
1717 data()->GetOrCreateLiveRangeFor(first_output->virtual_register());
1719 if (first_output->HasFixedPolicy()) {
1720 int output_vreg = first_output->virtual_register();
1723 if (first_output->HasSecondaryStorage()) {
1726 std::make_pair(range, first_output->GetSecondaryStorage()));
1728 AllocateFixed(first_output, instr_index, is_tagged);
1731 if (first_output->IsStackSlot()) {
1732 DCHECK(LocationOperand::cast(first_output)->index() <
1734 range->SetSpillOperand(LocationOperand::cast(first_output));
1745 first_output); local
[all...]
/external/tensorflow/tensorflow/contrib/cudnn_rnn/python/kernel_tests/
H A Dcudnn_rnn_test.py420 first_output, _ = cudnn_rnn.CudnnGRU(1, 100)(
424 self.assertAllEqual([28, 100, 100], first_output.shape)
428 first_output, _ = cudnn_rnn.CudnnGRU(1, 100)(
432 return (math_ops.reduce_sum(first_output) +

Completed in 263 milliseconds