Home
last modified time | relevance | path

Searched refs:n_coeffs (Results 1 – 25 of 32) sorted by relevance

12

/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_quantize_sse2.c19 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_sse2() argument
31 coeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
32 iscan_ptr += n_coeffs; in vp9_quantize_fp_sse2()
33 qcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
34 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
35 n_coeffs = -n_coeffs; in vp9_quantize_fp_sse2()
56 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vp9_quantize_fp_sse2()
57 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2()
80 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2()
81 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2()
[all …]
Dvp9_dct_ssse3.c22 const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_ssse3() argument
283 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3()
284 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3()
285 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3()
286 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_ssse3()
332 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3()
333 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3()
339 store_tran_low(coeff0, dqcoeff_ptr + n_coeffs); in vp9_fdct8x8_quant_ssse3()
340 store_tran_low(coeff1, dqcoeff_ptr + n_coeffs + 8); in vp9_fdct8x8_quant_ssse3()
353 iscan0 = _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_ssse3()
[all …]
Dvp9_dct_intrin_sse2.c183 int16_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_sse2() argument
451 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
452 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
453 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
454 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_sse2()
499 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs), qcoeff0); in vp9_fdct8x8_quant_sse2()
500 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs) + 1, qcoeff1); in vp9_fdct8x8_quant_sse2()
506 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_sse2()
507 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_sse2()
520 iscan0 = _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_sse2()
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dquantize_sse2.c18 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_sse2() argument
28 coeff_ptr += n_coeffs; in vpx_quantize_b_sse2()
29 iscan_ptr += n_coeffs; in vpx_quantize_b_sse2()
30 qcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2()
31 dqcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2()
32 n_coeffs = -n_coeffs; in vpx_quantize_b_sse2()
59 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vpx_quantize_b_sse2()
60 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2()
95 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2()
96 store_tran_low(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2()
[all …]
Dhighbd_quantize_intrin_sse2.c95 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_highbd_quantize_b_32x32_sse2() argument
116 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2()
117 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2()
121 for (i = 0; i < n_coeffs / 4; i++) { in vpx_highbd_quantize_b_32x32_sse2()
/external/libvpx/libvpx/vpx_dsp/
Dquantize.c15 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, in vpx_quantize_dc() argument
25 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc()
26 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc()
39 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, in vpx_highbd_quantize_dc() argument
46 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_dc()
47 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_dc()
67 const int n_coeffs = 1024; in vpx_quantize_dc_32x32() local
74 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc_32x32()
75 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc_32x32()
95 const int n_coeffs = 1024; in vpx_highbd_quantize_dc_32x32() local
[all …]
Dquantize.h21 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block,
31 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs,
/external/libvpx/config/x86_64/
Dvp9_rtcd.h44 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
45 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
81 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
82 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
83 void vp9_quantize_fp_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const in…
86 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
87 void vp9_quantize_fp_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, co…
Dvpx_dsp_rtcd.h466 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
467 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int1…
468 void vpx_quantize_b_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
471 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
472 void vpx_quantize_b_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
/external/libvpx/libvpx/vp9/encoder/
Dvp9_quantize.c23 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_c() argument
32 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_c()
33 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_c()
38 for (i = 0; i < n_coeffs; i++) { in vp9_quantize_fp_c()
92 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_32x32_c() argument
101 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_32x32_c()
102 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_32x32_c()
105 for (i = 0; i < n_coeffs; i++) { in vp9_quantize_fp_32x32_c()
128 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vp9_highbd_quantize_fp_32x32_c() argument
136 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_highbd_quantize_fp_32x32_c()
[all …]
Dvp9_dct.c558 tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_c() argument
636 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_fdct8x8_quant_c()
637 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_fdct8x8_quant_c()
642 for (i = 0; i < n_coeffs; i++) { in vp9_fdct8x8_quant_c()
/external/libvpx/config/x86/
Dvp9_rtcd.h44 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
45 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
81 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
82 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
85 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/arm-neon/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
44 …_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
73 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
74 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
77 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/arm64/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
44 …_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
73 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
74 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
77 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/libvpx/vp9/encoder/arm/neon/
Dvp9_dct_neon.c22 tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_neon() argument
32 vp9_quantize_fp_neon(temp_buffer, n_coeffs, skip_block, round_ptr, quant_ptr, in vp9_fdct8x8_quant_neon()
/external/libvpx/config/mips32/
Dvp9_rtcd.h42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h343 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
346 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
/external/libvpx/config/generic/
Dvp9_rtcd.h42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/mips64/
Dvp9_rtcd.h42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h343 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
346 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
/external/libvpx/config/arm/
Dvp9_rtcd.h42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
69 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
72 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h343 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
346 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
/external/libvpx/config/mips32-dspr2/
Dvp9_rtcd.h42 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
72 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
75 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/mips64-msa/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
77 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
80 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/mips32-msa/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
77 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
80 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …

12