Home
last modified time | relevance | path

Searched refs:kCompoundOffset (Results 1 – 11 of 11) sorted by relevance

/external/libgav1/libgav1/src/dsp/
Daverage_blend.cc49 res -= (bitdepth == 8) ? 0 : kCompoundOffset + kCompoundOffset; in AverageBlend_C()
Dwarp.cc196 sum += (bitdepth == 8) ? 0 : kCompoundOffset; in Warp_C()
247 sum += (bitdepth == 8) ? 0 : kCompoundOffset; in Warp_C()
414 sum += (bitdepth == 8) ? 0 : kCompoundOffset; in Warp_C()
Dconstants.h46 kCompoundOffset = (1 << 14) + (1 << 13), enumerator
Ddistance_weighted_blend.cc51 res -= (bitdepth == 8) ? 0 : kCompoundOffset * 16; in DistanceWeightedBlend_C()
Dconvolve.cc216 sum += (bitdepth == 8) ? 0 : kCompoundOffset; in ConvolveCompoundScale2D_C()
295 sum += (bitdepth == 8) ? 0 : kCompoundOffset; in ConvolveCompound2D_C()
555 sum += (bitdepth == 8) ? 0 : kCompoundOffset; in ConvolveCompoundHorizontal_C()
603 sum += (bitdepth == 8) ? 0 : kCompoundOffset; in ConvolveCompoundVertical_C()
Dmask_blend.cc73 res -= (bitdepth == 8) ? 0 : kCompoundOffset; in MaskBlend_C()
/external/libgav1/libgav1/src/dsp/arm/
Daverage_blend_neon.cc194 vdupq_n_s32(static_cast<int32_t>(kCompoundOffset + kCompoundOffset)); in AverageBlend_NEON()
Ddistance_weighted_blend_neon.cc204 const int32x4_t offset = vdupq_n_s32(kCompoundOffset * 16); in ComputeWeightedAverage8()
220 const int32x4_t offset = vdupq_n_s32(kCompoundOffset * 16); in ComputeWeightedAverage8()
/external/libgav1/libgav1/src/dsp/x86/
Daverage_blend_sse4.cc194 _mm_set1_epi32(kCompoundOffset + kCompoundOffset); in AverageBlend10bpp_SSE4_1()
Dmask_blend_sse4.cc556 const __m128i offset = _mm_set1_epi32(kCompoundOffset); in MaskBlend10bpp4x4_SSE4_1()
597 const __m128i offset = _mm_set1_epi32(kCompoundOffset); in MaskBlend10bpp4xH_SSE4_1()
674 const __m128i offset = _mm_set1_epi32(kCompoundOffset); in MaskBlend10bpp_SSE4_1()
Ddistance_weighted_blend_sse4.cc233 (1 << ((kInterPostRoundBit + 4) - 1)) - (kCompoundOffset << 4); in ComputeWeightedAverage8()