Home
last modified time | relevance | path

Searched refs:final_output (Results 1 – 8 of 8) sorted by relevance

/external/libaom/libaom/aom_dsp/arm/
Dfwd_txfm_neon.c79 void aom_fdct4x4_neon(const int16_t *input, tran_low_t *final_output, in aom_fdct4x4_neon() argument
92 store_s16q_to_tran_low(final_output + 0 * 8, out_01); in aom_fdct4x4_neon()
93 store_s16q_to_tran_low(final_output + 1 * 8, out_23); in aom_fdct4x4_neon()
96 void aom_fdct4x4_lp_neon(const int16_t *input, int16_t *final_output, in aom_fdct4x4_lp_neon() argument
109 vst1q_s16(final_output + 0 * 8, out_01); in aom_fdct4x4_lp_neon()
110 vst1q_s16(final_output + 1 * 8, out_23); in aom_fdct4x4_lp_neon()
113 void aom_fdct8x8_neon(const int16_t *input, int16_t *final_output, int stride) { in aom_fdct8x8_neon() argument
290 vst1q_s16(&final_output[0 * 8], input_0); in aom_fdct8x8_neon()
291 vst1q_s16(&final_output[1 * 8], input_1); in aom_fdct8x8_neon()
292 vst1q_s16(&final_output[2 * 8], input_2); in aom_fdct8x8_neon()
[all …]
/external/libvpx/libvpx/vpx_dsp/arm/
Dfwd_txfm_neon.c20 void vpx_fdct8x8_neon(const int16_t *input, tran_low_t *final_output, in vpx_fdct8x8_neon() argument
201 store_s16q_to_tran_low(final_output + 0 * 8, input_0); in vpx_fdct8x8_neon()
202 store_s16q_to_tran_low(final_output + 1 * 8, input_1); in vpx_fdct8x8_neon()
203 store_s16q_to_tran_low(final_output + 2 * 8, input_2); in vpx_fdct8x8_neon()
204 store_s16q_to_tran_low(final_output + 3 * 8, input_3); in vpx_fdct8x8_neon()
205 store_s16q_to_tran_low(final_output + 4 * 8, input_4); in vpx_fdct8x8_neon()
206 store_s16q_to_tran_low(final_output + 5 * 8, input_5); in vpx_fdct8x8_neon()
207 store_s16q_to_tran_low(final_output + 6 * 8, input_6); in vpx_fdct8x8_neon()
208 store_s16q_to_tran_low(final_output + 7 * 8, input_7); in vpx_fdct8x8_neon()
Dfdct_neon.c21 void vpx_fdct4x4_neon(const int16_t *input, tran_low_t *final_output, in vpx_fdct4x4_neon() argument
88 store_s16q_to_tran_low(final_output + 0 * 8, out_01); in vpx_fdct4x4_neon()
89 store_s16q_to_tran_low(final_output + 1 * 8, out_23); in vpx_fdct4x4_neon()
/external/libaom/libaom/aom_dsp/
Dfwd_txfm.c140 void aom_fdct8x8_c(const int16_t *input, tran_low_t *final_output, int stride) { in aom_fdct8x8_c() argument
215 output = final_output; in aom_fdct8x8_c()
220 for (j = 0; j < 8; ++j) final_output[j + i * 8] /= 2; in aom_fdct8x8_c()
225 void aom_highbd_fdct8x8_c(const int16_t *input, tran_low_t *final_output, in aom_highbd_fdct8x8_c() argument
227 aom_fdct8x8_c(input, final_output, stride); in aom_highbd_fdct8x8_c()
/external/tensorflow/tensorflow/python/ops/
Drnn.py283 final_output = final_output_and_state[:len(flat_zero_output)]
286 for output, flat_output in zip(final_output, flat_zero_output):
292 final_output = nest.pack_sequence_as(
293 structure=zero_output, flat_sequence=final_output)
297 return final_output, final_state
/external/eigen/Eigen/src/Core/arch/AVX512/
DPacketMath.h806 __m512 final_output;
808 EIGEN_INSERT_8f_INTO_16f(final_output, final, final_1);
809 return final_output;
872 __m512d final_output = _mm512_insertf64x4(final_output, final_0, 0);
874 return _mm512_insertf64x4(final_output, final_1, 1);
/external/llvm-project/lld/MachO/
DOptions.td789 def final_output : Separate<["-"], "final_output">,
/external/tensorflow/tensorflow/core/grappler/optimizers/
Darithmetic_optimizer_test.cc2682 Output final_output = ops::Log(s.WithOpName("final_output"), softmax); in TEST_F() local