/external/libgav1/libgav1/src/dsp/x86/ |
D | distance_weighted_blend_sse4.cc | 57 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/ |
D | resize_bicubic_op.cc | 74 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/ |
D | distance_weighted_blend.cc | 31 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()
|
D | dsp.h | 530 uint8_t weight_0, uint8_t weight_1,
|
/external/libgav1/libgav1/src/dsp/arm/ |
D | distance_weighted_blend_neon.cc | 132 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/ |
D | depthwise_conv.cc | 238 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/ |
D | predictor_enc.c | 33 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/ |
D | prediction.cc | 155 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/ |
D | temporal_filter_sse4.c | 107 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()
|