Searched refs:calculate_dqcoeff_and_store (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | quantize_sse2.c | 77 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr); in vpx_quantize_b_sse2() 79 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + 8); in vpx_quantize_b_sse2() 108 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr + index); in vpx_quantize_b_sse2() 109 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + index + 8); in vpx_quantize_b_sse2()
|
D | quantize_ssse3.c | 71 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr); in vpx_quantize_b_ssse3() 73 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + 8); in vpx_quantize_b_ssse3() 100 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr + index); in vpx_quantize_b_ssse3() 101 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + index + 8); in vpx_quantize_b_ssse3()
|
D | quantize_avx.c | 94 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr); in vpx_quantize_b_avx() 96 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + 8); in vpx_quantize_b_avx() 136 calculate_dqcoeff_and_store(qcoeff0, dequant, dqcoeff_ptr + index); in vpx_quantize_b_avx() 137 calculate_dqcoeff_and_store(qcoeff1, dequant, dqcoeff_ptr + index + 8); in vpx_quantize_b_avx()
|
D | quantize_sse2.h | 47 static INLINE void calculate_dqcoeff_and_store(__m128i qcoeff, __m128i dequant, in calculate_dqcoeff_and_store() function
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | quantize_neon.c | 18 static INLINE void calculate_dqcoeff_and_store(const int16x8_t qcoeff, in calculate_dqcoeff_and_store() function 92 calculate_dqcoeff_and_store(qcoeff, dequant, dqcoeff_ptr); in vpx_quantize_b_neon() 143 calculate_dqcoeff_and_store(qcoeff, dequant, dqcoeff_ptr); in vpx_quantize_b_neon()
|
/external/libvpx/libvpx/vp9/encoder/arm/neon/ |
D | vp9_quantize_neon.c | 29 static INLINE void calculate_dqcoeff_and_store(const int16x8_t qcoeff, in calculate_dqcoeff_and_store() function 87 calculate_dqcoeff_and_store(v_qcoeff, v_dequant, dqcoeff_ptr); in vp9_quantize_fp_neon() 112 calculate_dqcoeff_and_store(v_qcoeff, v_dequant, dqcoeff_ptr + i); in vp9_quantize_fp_neon()
|