Home
last modified time | relevance | path

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

12

/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_quantize_sse2.c17 void vp9_quantize_fp_sse2(const int16_t* coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_sse2() argument
32 coeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
33 iscan_ptr += n_coeffs; in vp9_quantize_fp_sse2()
34 qcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
35 dqcoeff_ptr += n_coeffs; in vp9_quantize_fp_sse2()
36 n_coeffs = -n_coeffs; in vp9_quantize_fp_sse2()
57 coeff0 = _mm_load_si128((const __m128i*)(coeff_ptr + n_coeffs)); in vp9_quantize_fp_sse2()
58 coeff1 = _mm_load_si128((const __m128i*)(coeff_ptr + n_coeffs) + 1); in vp9_quantize_fp_sse2()
81 _mm_store_si128((__m128i*)(qcoeff_ptr + n_coeffs), qcoeff0); in vp9_quantize_fp_sse2()
82 _mm_store_si128((__m128i*)(qcoeff_ptr + n_coeffs) + 1, qcoeff1); in vp9_quantize_fp_sse2()
[all …]
Dvp9_dct_ssse3.c24 int16_t* coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_ssse3() argument
291 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3()
292 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3()
293 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_ssse3()
294 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_ssse3()
340 _mm_store_si128((__m128i*)(qcoeff_ptr + n_coeffs), qcoeff0); in vp9_fdct8x8_quant_ssse3()
341 _mm_store_si128((__m128i*)(qcoeff_ptr + n_coeffs) + 1, qcoeff1); in vp9_fdct8x8_quant_ssse3()
347 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_ssse3()
348 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_ssse3()
361 iscan0 = _mm_load_si128((const __m128i*)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_ssse3()
[all …]
Dvp9_dct_sse2.c187 int16_t* coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_sse2() argument
458 iscan_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
459 qcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
460 dqcoeff_ptr += n_coeffs; in vp9_fdct8x8_quant_sse2()
461 n_coeffs = -n_coeffs; in vp9_fdct8x8_quant_sse2()
506 _mm_store_si128((__m128i*)(qcoeff_ptr + n_coeffs), qcoeff0); in vp9_fdct8x8_quant_sse2()
507 _mm_store_si128((__m128i*)(qcoeff_ptr + n_coeffs) + 1, qcoeff1); in vp9_fdct8x8_quant_sse2()
513 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs), coeff0); in vp9_fdct8x8_quant_sse2()
514 _mm_store_si128((__m128i*)(dqcoeff_ptr + n_coeffs) + 1, coeff1); in vp9_fdct8x8_quant_sse2()
527 iscan0 = _mm_load_si128((const __m128i*)(iscan_ptr + n_coeffs)); in vp9_fdct8x8_quant_sse2()
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dquantize_sse2.c42 void vpx_quantize_b_sse2(const tran_low_t* coeff_ptr, intptr_t n_coeffs, in vpx_quantize_b_sse2() argument
53 coeff_ptr += n_coeffs; in vpx_quantize_b_sse2()
54 iscan_ptr += n_coeffs; in vpx_quantize_b_sse2()
55 qcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2()
56 dqcoeff_ptr += n_coeffs; in vpx_quantize_b_sse2()
57 n_coeffs = -n_coeffs; in vpx_quantize_b_sse2()
84 coeff0 = load_coefficients(coeff_ptr + n_coeffs); in vpx_quantize_b_sse2()
85 coeff1 = load_coefficients(coeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2()
120 store_coefficients(qcoeff0, qcoeff_ptr + n_coeffs); in vpx_quantize_b_sse2()
121 store_coefficients(qcoeff1, qcoeff_ptr + n_coeffs + 8); in vpx_quantize_b_sse2()
[all …]
Dhighbd_quantize_intrin_sse2.c105 intptr_t n_coeffs, in vpx_highbd_quantize_b_32x32_sse2() argument
136 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2()
137 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vpx_highbd_quantize_b_32x32_sse2()
141 for (i = 0; i < n_coeffs / 4; i++) { in vpx_highbd_quantize_b_32x32_sse2()
/external/libvpx/libvpx/vpx_dsp/
Dquantize.c15 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()
41 int n_coeffs, int skip_block, in vpx_highbd_quantize_dc() argument
47 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vpx_highbd_quantize_dc()
48 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()
100 const int n_coeffs = 1024; in vpx_highbd_quantize_dc_32x32() local
[all …]
Dquantize.h22 int n_coeffs, int skip_block,
33 int n_coeffs, int skip_block,
/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
38 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_c()
39 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_c()
44 for (i = 0; i < n_coeffs; i++) { in vp9_quantize_fp_c()
110 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_quantize_fp_32x32_c() argument
124 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_quantize_fp_32x32_c()
125 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_quantize_fp_32x32_c()
128 for (i = 0; i < n_coeffs; i++) { in vp9_quantize_fp_32x32_c()
152 intptr_t n_coeffs, int skip_block, in vp9_highbd_quantize_fp_32x32_c() argument
167 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_highbd_quantize_fp_32x32_c()
[all …]
Dvp9_dct.c563 tran_low_t *coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_c() argument
649 memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); in vp9_fdct8x8_quant_c()
650 memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); in vp9_fdct8x8_quant_c()
655 for (i = 0; i < n_coeffs; i++) { in vp9_fdct8x8_quant_c()
/external/libvpx/config/x86_64/
Dvp9_rtcd.h51 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
52 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
53 …ssse3(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
112 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
113 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
114 void vp9_quantize_fp_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const in…
117 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
118 void vp9_quantize_fp_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, co…
Dvpx_dsp_rtcd.h441 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
442 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int1…
443 void vpx_quantize_b_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
446 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
447 void vpx_quantize_b_32x32_ssse3(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, con…
/external/libvpx/config/arm64/
Dvp9_rtcd.h49 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
50 …_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
99 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
100 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
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-neon/
Dvp9_rtcd.h49 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
50 …_neon(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
99 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
100 void vp9_quantize_fp_neon(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int…
103 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
/external/libvpx/config/x86/
Dvp9_rtcd.h51 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
52 …_sse2(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, …
53 …ssse3(const int16_t *input, int stride, 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/libvpx/vp9/encoder/arm/neon/
Dvp9_dct_neon.c21 int16_t* coeff_ptr, intptr_t n_coeffs, in vp9_fdct8x8_quant_neon() argument
33 vp9_quantize_fp_neon(temp_buffer, n_coeffs, skip_block, zbin_ptr, round_ptr, in vp9_fdct8x8_quant_neon()
/external/libvpx/config/mips32/
Dvp9_rtcd.h47 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
92 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
95 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h346 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
349 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.h47 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
92 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
95 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h346 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
349 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…
/external/libvpx/config/mips64/
Dvp9_rtcd.h47 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
92 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
95 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h346 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
349 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.h47 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
92 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
95 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h347 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
350 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.h47 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr, intptr_t n_coeffs
95 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_…
98 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const …
Dvpx_dsp_rtcd.h382 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t…
385 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const i…

12