/external/libgav1/libgav1/src/dsp/x86/ |
D | distance_weighted_blend_sse4.cc | 58 const uint8_t weight_1, void* const dest, const ptrdiff_t dest_stride) { in DistanceWeightedBlend4xH_SSE4_1() argument 60 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend4xH_SSE4_1() 102 const uint8_t weight_1, void* const dest, const ptrdiff_t dest_stride) { in DistanceWeightedBlend8xH_SSE4_1() argument 104 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend8xH_SSE4_1() 129 const uint8_t weight_1, const int width, const int height, void* const dest, in DistanceWeightedBlendLarge_SSE4_1() argument 132 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlendLarge_SSE4_1() 160 const uint8_t weight_1, const int width, 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 | 75 float weight_1; member 106 out->weight_1 = (out->index_1 == in_loc ? coeffs_table[offset * 2] : 0.0f); in GetWeightsAndIndices() 117 out->weight_0 + out->weight_1 + out->weight_2 + out->weight_3; in GetWeightsAndIndices() 121 out->weight_1 *= one_over_weight_sum; in GetWeightsAndIndices() 127 out->weight_1 = coeffs_table[offset * 2]; in GetWeightsAndIndices() 138 inline float Interpolate1D(const float weight_0, const float weight_1, in Interpolate1D() argument 143 static_cast<float>(value_1) * weight_1 + 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/tensorflow/tensorflow/python/training/ |
D | moving_averages_test.py | 120 weight_1 = 4.0 121 wma_array = sess.run(wma, feed_dict={val: val_1, weight: weight_1}) 122 numerator_1 = val_1 * weight_1 * (1.0 - decay) 123 denominator_1 = weight_1 * (1.0 - decay) 146 weight_1 = 4.0 147 wma_array = sess.run(wma, feed_dict={val: val_1, weight: weight_1}) 148 numerator_1 = val_1 * weight_1 * (1.0 - decay) 149 denominator_1 = weight_1 * (1.0 - decay)
|
/external/libgav1/libgav1/src/dsp/arm/ |
D | distance_weighted_blend_neon.cc | 133 const uint8_t weight_1, const int width, 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 240 AE_LP8X2F_IU(weight_1, weight_1_ptr, 2); in DepthwiseConv4x32MatchingInputAndFilter() 265 AE_MULAS56P24S_HH(block_0_acc, input_1, weight_1); in DepthwiseConv4x32MatchingInputAndFilter() 270 AE_MULAS56P24S_LL(block_1_acc, input_1, weight_1); in DepthwiseConv4x32MatchingInputAndFilter()
|
/external/libgav1/libgav1/src/tile/ |
D | prediction.cc | 156 const int weight_1 = kQuantizedDistanceWeight[i][1 - 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() 113 weight_1, weight_1); in average_4_4()
|