Searched refs:final_output (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | fwd_txfm_neon.c | 19 void vpx_fdct8x8_neon(const int16_t *input, tran_low_t *final_output, in vpx_fdct8x8_neon() argument 200 store_s16q_to_tran_low(final_output + 0 * 8, input_0); in vpx_fdct8x8_neon() 201 store_s16q_to_tran_low(final_output + 1 * 8, input_1); in vpx_fdct8x8_neon() 202 store_s16q_to_tran_low(final_output + 2 * 8, input_2); in vpx_fdct8x8_neon() 203 store_s16q_to_tran_low(final_output + 3 * 8, input_3); in vpx_fdct8x8_neon() 204 store_s16q_to_tran_low(final_output + 4 * 8, input_4); in vpx_fdct8x8_neon() 205 store_s16q_to_tran_low(final_output + 5 * 8, input_5); in vpx_fdct8x8_neon() 206 store_s16q_to_tran_low(final_output + 6 * 8, input_6); in vpx_fdct8x8_neon() 207 store_s16q_to_tran_low(final_output + 7 * 8, input_7); in vpx_fdct8x8_neon()
|
D | fdct_neon.c | 20 void vpx_fdct4x4_neon(const int16_t *input, tran_low_t *final_output, in vpx_fdct4x4_neon() argument 89 store_s16q_to_tran_low(final_output + 0 * 8, out_01); in vpx_fdct4x4_neon() 90 store_s16q_to_tran_low(final_output + 1 * 8, out_23); in vpx_fdct4x4_neon()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | fwd_txfm.c | 90 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *final_output, int stride) { in vpx_fdct8x8_c() argument 165 output = final_output; in vpx_fdct8x8_c() 170 for (j = 0; j < 8; ++j) final_output[j + i * 8] /= 2; in vpx_fdct8x8_c() 775 void vpx_highbd_fdct8x8_c(const int16_t *input, tran_low_t *final_output, in vpx_highbd_fdct8x8_c() argument 777 vpx_fdct8x8_c(input, final_output, stride); in vpx_highbd_fdct8x8_c() 780 void vpx_highbd_fdct8x8_1_c(const int16_t *input, tran_low_t *final_output, in vpx_highbd_fdct8x8_1_c() argument 782 vpx_fdct8x8_1_c(input, final_output, stride); in vpx_highbd_fdct8x8_1_c()
|
/external/eigen/Eigen/src/Core/arch/AVX512/ |
D | PacketMath.h | 806 __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);
|