Searched refs:final_output (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | fwd_txfm_neon.c | 16 void vpx_fdct8x8_neon(const int16_t *input, int16_t *final_output, int stride) { in vpx_fdct8x8_neon() argument 194 vst1q_s16(&final_output[0 * 8], input_0); in vpx_fdct8x8_neon() 195 vst1q_s16(&final_output[1 * 8], input_1); in vpx_fdct8x8_neon() 196 vst1q_s16(&final_output[2 * 8], input_2); in vpx_fdct8x8_neon() 197 vst1q_s16(&final_output[3 * 8], input_3); in vpx_fdct8x8_neon() 198 vst1q_s16(&final_output[4 * 8], input_4); in vpx_fdct8x8_neon() 199 vst1q_s16(&final_output[5 * 8], input_5); in vpx_fdct8x8_neon() 200 vst1q_s16(&final_output[6 * 8], input_6); in vpx_fdct8x8_neon() 201 vst1q_s16(&final_output[7 * 8], input_7); in vpx_fdct8x8_neon()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | fwd_txfm.c | 91 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *final_output, int stride) { in vpx_fdct8x8_c() argument 167 output = final_output; in vpx_fdct8x8_c() 173 final_output[j + i * 8] /= 2; in vpx_fdct8x8_c() 789 void vpx_highbd_fdct8x8_c(const int16_t *input, tran_low_t *final_output, in vpx_highbd_fdct8x8_c() argument 791 vpx_fdct8x8_c(input, final_output, stride); in vpx_highbd_fdct8x8_c() 794 void vpx_highbd_fdct8x8_1_c(const int16_t *input, tran_low_t *final_output, in vpx_highbd_fdct8x8_1_c() argument 796 vpx_fdct8x8_1_c(input, final_output, stride); in vpx_highbd_fdct8x8_1_c()
|