Home
last modified time | relevance | path

Searched refs:weight_0 (Results 1 – 9 of 9) sorted by relevance

/external/libgav1/libgav1/src/dsp/x86/
Ddistance_weighted_blend_sse4.cc57 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlend4xH_SSE4_1() argument
60 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend4xH_SSE4_1()
101 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlend8xH_SSE4_1() argument
104 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend8xH_SSE4_1()
128 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlendLarge_SSE4_1() argument
132 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlendLarge_SSE4_1()
159 const uint8_t weight_0, in DistanceWeightedBlend_SSE4_1() argument
167 DistanceWeightedBlend4xH_SSE4_1<4>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
170 DistanceWeightedBlend4xH_SSE4_1<8>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
174 DistanceWeightedBlend4xH_SSE4_1<16>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
[all …]
/external/tensorflow/tensorflow/core/kernels/image/
Dresize_bicubic_op.cc74 float weight_0; member
103 out->weight_0 = in GetWeightsAndIndices()
117 out->weight_0 + out->weight_1 + out->weight_2 + out->weight_3; in GetWeightsAndIndices()
120 out->weight_0 *= one_over_weight_sum; in GetWeightsAndIndices()
126 out->weight_0 = coeffs_table[offset * 2 + 1]; in GetWeightsAndIndices()
138 inline float Interpolate1D(const float weight_0, const float weight_1, in Interpolate1D() argument
142 return static_cast<float>(value_0) * weight_0 + in Interpolate1D()
288 return Interpolate1D<T>(y_wai.weight_0, y_wai.weight_1, y_wai.weight_2, in ComputeYInterpolation()
399 Compute(cached_value_0, x_wai.weight_0, x_wai.weight_1, in interpolate_with_caching()
402 Compute(cached_value_1, x_wai.weight_0, x_wai.weight_1, in interpolate_with_caching()
[all …]
/external/libgav1/libgav1/src/dsp/
Ddistance_weighted_blend.cc31 const uint8_t weight_0, const uint8_t weight_1, in DistanceWeightedBlend_C() argument
50 int res = pred_0[x] * weight_0 + pred_1[x] * weight_1; in DistanceWeightedBlend_C()
Ddsp.h530 uint8_t weight_0, uint8_t weight_1,
/external/libgav1/libgav1/src/dsp/arm/
Ddistance_weighted_blend_neon.cc132 const uint8_t weight_0, in DistanceWeightedBlend_NEON() argument
138 int16x4_t weights[2] = {vdup_n_s16(weight_0), vdup_n_s16(weight_1)}; in DistanceWeightedBlend_NEON()
272 const uint8_t weight_0, const uint8_t weight_1, in DistanceWeightedBlend_NEON() argument
279 const uint16x4_t weights[2] = {vdup_n_u16(weight_0), vdup_n_u16(weight_1)}; in DistanceWeightedBlend_NEON()
/external/tensorflow/tensorflow/lite/micro/kernels/xtensa/
Ddepthwise_conv.cc238 ae_p24x2s weight_0, weight_1, weight_2, weight_3; in DepthwiseConv4x32MatchingInputAndFilter() local
239 AE_LP8X2F_IU(weight_0, weight_0_ptr, 2); in DepthwiseConv4x32MatchingInputAndFilter()
264 AE_MULAS56P24S_HH(block_0_acc, input_0, weight_0); in DepthwiseConv4x32MatchingInputAndFilter()
269 AE_MULAS56P24S_LL(block_1_acc, input_0, weight_0); in DepthwiseConv4x32MatchingInputAndFilter()
/external/webp/src/enc/
Dpredictor_enc.c33 static float PredictionCostSpatial(const int counts[256], int weight_0, in PredictionCostSpatial() argument
37 double bits = weight_0 * counts[0]; in PredictionCostSpatial()
/external/libgav1/libgav1/src/tile/
Dprediction.cc155 const int weight_0 = kQuantizedDistanceWeight[i][order]; in GetDistanceWeights() local
158 if (distance[0] * weight_0 < distance[1] * weight_1) break; in GetDistanceWeights()
160 if (distance[0] * weight_0 > distance[1] * weight_1) break; in GetDistanceWeights()
/external/libaom/libaom/av1/encoder/x86/
Dtemporal_filter_sse4.c107 const int weight_0, const int weight_1) { in average_4_4() argument
112 _mm_setr_epi16(weight_0, weight_0, weight_0, weight_0, weight_1, weight_1, in average_4_4()