Home
last modified time | relevance | path

Searched refs:MAX_COEFF_THRESH (Results 1 – 7 of 7) sorted by relevance

/external/webp/src/dsp/
Denc_sse41.c29 const __m128i max_coeff_thresh = _mm_set1_epi16(MAX_COEFF_THRESH); in CollectHistogram_SSE41()
31 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram_SSE41()
Denc.c46 void VP8SetHistogramData(const int distribution[MAX_COEFF_THRESH + 1], in VP8SetHistogramData()
50 for (k = 0; k <= MAX_COEFF_THRESH; ++k) { in VP8SetHistogramData()
66 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram_C()
76 const int clipped_value = clip_max(v, MAX_COEFF_THRESH); in CollectHistogram_C()
Ddsp.h297 #define MAX_COEFF_THRESH 31 // size of histogram used by CollectHistogram. macro
308 void VP8SetHistogramData(const int distribution[MAX_COEFF_THRESH + 1],
Denc_mips_dsp_r2.c1459 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram_MIPSdspR2()
1460 const int max_coeff = (MAX_COEFF_THRESH << 16) + MAX_COEFF_THRESH; in CollectHistogram_MIPSdspR2()
Denc_neon.c720 const uint16x8_t max_coeff_thresh = vdupq_n_u16(MAX_COEFF_THRESH); in CollectHistogram_NEON()
722 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram_NEON()
Denc_msa.c229 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram_MSA()
237 const v8i16 max_coeff_thr = __msa_ldi_h(MAX_COEFF_THRESH); in CollectHistogram_MSA()
Denc_sse2.c441 const __m128i max_coeff_thresh = _mm_set1_epi16(MAX_COEFF_THRESH); in CollectHistogram_SSE2()
443 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram_SSE2()