Home
last modified time | relevance | path

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

12

/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_quantize_sse2.c20 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_sse2() argument
36 coeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
37 iscan_ptr += n_coeffs; in vp9_quantize_fp_sse2()
38 qcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
39 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
40 n_coeffs = -n_coeffs; in vp9_quantize_fp_sse2()
58 coeff0 = load_tran_low(coeff_ptr + n_coeffs); in vp9_quantize_fp_sse2()
59 coeff1 = load_tran_low(coeff_ptr + n_coeffs + 8); in vp9_quantize_fp_sse2()
82 store_tran_low(qcoeff0, qcoeff_ptr + n_coeffs); in vp9_quantize_fp_sse2()
83 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.c184 int16_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_sse2() argument
452 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
453 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
454 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
455 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_sse2()
500 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs), qcoeff0); in vp9_fdct8x8_quant_sse2()
501 _mm_store_si128((__m128i *)(qcoeff_ptr + n_coeffs) + 1, qcoeff1); in vp9_fdct8x8_quant_sse2()
507 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_sse2()
508 _mm_store_si128((__m128i *)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_sse2()
521 iscan0 = _mm_load_si128((const __m128i *)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_sse2()
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dquantize.c17 void vpx_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, in vpx_quantize_dc() argument
27 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc()
28 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc()
41 void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, in vpx_highbd_quantize_dc() argument
48 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_dc()
49 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_dc()
69 const int n_coeffs = 1024; in vpx_quantize_dc_32x32() local
76 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_quantize_dc_32x32()
77 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_quantize_dc_32x32()
97 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/libvpx/vp9/encoder/
Dvp9_quantize.c24 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_c() argument
35 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_c()
36 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_c()
40 for (i = 0; i < n_coeffs; i++) { in vp9_quantize_fp_c()
58 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_highbd_quantize_fp_c() argument
71 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_highbd_quantize_fp_c()
72 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_highbd_quantize_fp_c()
76 for (i = 0; i < n_coeffs; i++) { in vp9_highbd_quantize_fp_c()
93 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_32x32_c() argument
104 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_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/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, …
83 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
86 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
101 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
102 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
105 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
106 void vp9_quantize_fp_32x32_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
/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, …
83 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
86 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
101 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
102 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
105 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
106 void vp9_quantize_fp_32x32_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
/external/libvpx/config/x86_64/
Dvp9_rtcd.h45 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
90 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
93 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
111 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
112 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
113 void vp9_quantize_fp_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const in…
116 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
117 void vp9_quantize_fp_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, co…
/external/libvpx/config/x86/
Dvp9_rtcd.h45 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
46 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
90 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
93 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
111 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
112 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
115 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
82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
103 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
82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
103 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.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/arm/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/generic/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/mips32/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/mips32-dspr2/
Dvp9_rtcd.h43 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
82 void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const…
85 void vp9_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,…
100 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/libvpx/vpx_dsp/arm/
Dquantize_neon.c18 void vpx_quantize_b_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_neon() argument
82 n_coeffs -= 8; in vpx_quantize_b_neon()
134 n_coeffs -= 8; in vpx_quantize_b_neon()
135 } while (n_coeffs > 0); in vpx_quantize_b_neon()
154 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_quantize_b_32x32_neon() argument
164 (void)n_coeffs; // Because we will always calculate 32*32. in vpx_quantize_b_32x32_neon()
/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/libvpx/vpx_dsp/x86/
Dhighbd_quantize_intrin_sse2.c96 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_highbd_quantize_b_32x32_sse2() argument
120 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2()
121 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2()
124 for (i = 0; i < n_coeffs / 4; i++) { in vpx_highbd_quantize_b_32x32_sse2()
Dquantize_avx.c22 void vpx_quantize_b_avx(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_avx() argument
69 if (n_coeffs == 16) return; in vpx_quantize_b_avx()
105 for (index = 16; index < n_coeffs; index += 16) { in vpx_quantize_b_avx()
153 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_quantize_b_32x32_avx() argument
171 (void)n_coeffs; in vpx_quantize_b_32x32_avx()
Dquantize_ssse3.c19 void vpx_quantize_b_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_ssse3() argument
81 while (index < n_coeffs) { in vpx_quantize_b_ssse3()
120 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, in vpx_quantize_b_32x32_ssse3() argument
137 (void)n_coeffs; in vpx_quantize_b_32x32_ssse3()
Dquantize_sse2.c20 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_sse2() argument
88 while (index < n_coeffs) { in vpx_quantize_b_sse2()
/external/libvpx/libvpx/test/
Dvp9_quantize_test.cc138 void quantize_fp_nz_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in quantize_fp_nz_c() argument
152 for (i = 0; i < n_coeffs; i += 16) { in quantize_fp_nz_c()
188 for (i = 0; i < n_coeffs; i++) { in quantize_fp_nz_c()

12