Home
last modified time | relevance | path

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

/external/opencv3/3rdparty/libwebp/enc/
Dvp8enci.h174 #define MAX_COEFF_THRESH 31 macro
178 int distribution[MAX_COEFF_THRESH + 1];
Danalysis.c120 for (k = 0; k <= MAX_COEFF_THRESH; ++k) { in GetAlpha()
137 for (i = 0; i <= MAX_COEFF_THRESH; ++i) { in MergeHistograms()
/external/webp/src/dsp/
Ddsp.h178 #define MAX_COEFF_THRESH 31 // size of histogram used by CollectHistogram. macro
189 void VP8SetHistogramData(const int distribution[MAX_COEFF_THRESH + 1],
Denc.c44 void VP8SetHistogramData(const int distribution[MAX_COEFF_THRESH + 1], in VP8SetHistogramData()
48 for (k = 0; k <= MAX_COEFF_THRESH; ++k) { in VP8SetHistogramData()
63 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram()
73 const int clipped_value = clip_max(v, MAX_COEFF_THRESH); in CollectHistogram()
Denc_sse41.c28 const __m128i max_coeff_thresh = _mm_set1_epi16(MAX_COEFF_THRESH); in CollectHistogram()
30 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram()
Denc_mips_dsp_r2.c1459 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram()
1460 const int max_coeff = (MAX_COEFF_THRESH << 16) + MAX_COEFF_THRESH; in CollectHistogram()
Denc_neon.c728 const uint16x8_t max_coeff_thresh = vdupq_n_u16(MAX_COEFF_THRESH); in CollectHistogram()
730 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram()
Denc_sse2.c514 const __m128i max_coeff_thresh = _mm_set1_epi16(MAX_COEFF_THRESH); in CollectHistogram()
516 int distribution[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram()
/external/opencv3/3rdparty/libwebp/dsp/
Denc.c58 const int clipped_value = clip_max(v, MAX_COEFF_THRESH); in CollectHistogram()
Denc_sse2.c62 const __m128i max_coeff_thresh = _mm_set1_epi16(MAX_COEFF_THRESH); in CollectHistogramSSE2()