Home
last modified time | relevance | path

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

123

/dports/multimedia/libgav1/libgav1-0.17.0/src/dsp/x86/
H A Ddistance_weighted_blend_sse4.cc58 const int16_t* LIBGAV1_RESTRICT pred_1, const uint8_t weight_0, in DistanceWeightedBlend4xH_SSE4_1() argument
62 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend4xH_SSE4_1()
104 const int16_t* LIBGAV1_RESTRICT pred_1, const uint8_t weight_0, in DistanceWeightedBlend8xH_SSE4_1() argument
108 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend8xH_SSE4_1()
133 const int16_t* LIBGAV1_RESTRICT pred_1, const uint8_t weight_0, in DistanceWeightedBlendLarge_SSE4_1() argument
164 const uint8_t weight_0, in DistanceWeightedBlend_SSE4_1() argument
267 const uint16_t* LIBGAV1_RESTRICT pred_1, const uint8_t weight_0, in DistanceWeightedBlend4xH_SSE4_1() argument
271 const __m128i weight0 = _mm_set1_epi32(weight_0); in DistanceWeightedBlend4xH_SSE4_1()
317 const __m128i weight0 = _mm_set1_epi32(weight_0); in DistanceWeightedBlend8xH_SSE4_1()
350 const __m128i weight0 = _mm_set1_epi32(weight_0); in DistanceWeightedBlendLarge_SSE4_1()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libgav1/src/src/dsp/x86/
H A Ddistance_weighted_blend_sse4.cc56 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlend4xH_SSE4_1() argument
59 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend4xH_SSE4_1()
100 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlend8xH_SSE4_1() argument
103 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend8xH_SSE4_1()
127 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlendLarge_SSE4_1() argument
131 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlendLarge_SSE4_1()
158 const uint8_t weight_0, in DistanceWeightedBlend_SSE4_1() argument
166 DistanceWeightedBlend4xH_SSE4_1<4>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
169 DistanceWeightedBlend4xH_SSE4_1<8>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
173 DistanceWeightedBlend4xH_SSE4_1<16>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libgav1/src/src/dsp/x86/
H A Ddistance_weighted_blend_sse4.cc56 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlend4xH_SSE4_1() argument
59 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend4xH_SSE4_1()
100 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlend8xH_SSE4_1() argument
103 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlend8xH_SSE4_1()
127 const int16_t* pred_0, const int16_t* pred_1, const uint8_t weight_0, in DistanceWeightedBlendLarge_SSE4_1() argument
131 const __m128i weights = _mm_set1_epi32(weight_0 | (weight_1 << 16)); in DistanceWeightedBlendLarge_SSE4_1()
158 const uint8_t weight_0, in DistanceWeightedBlend_SSE4_1() argument
166 DistanceWeightedBlend4xH_SSE4_1<4>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
169 DistanceWeightedBlend4xH_SSE4_1<8>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
173 DistanceWeightedBlend4xH_SSE4_1<16>(pred_0, pred_1, weight_0, weight_1, in DistanceWeightedBlend_SSE4_1()
[all …]
/dports/misc/tvm/incubator-tvm-0.6.1/nnvm/tests/python/compiler/
H A Dtest_optimizer.py76 weight_0 = weight - base_lr * lr_factor * (gradient_0 + wd * weight)
77 gradient_1 = data * 2 * weight_0 * rescale_grad
79 weight_1 = weight_0 - base_lr * (lr_factor ** 2) * (gradient_1 + wd * weight_0)
120 weight_0 = weight - lr_0 * (m_0 / (np.sqrt(v_0) + epsilon) + wd * weight)
123 gradient_1 = data * 2 * weight_0 * rescale_grad
127 weight_1 = weight_0 - lr_1 * (m_1 / (np.sqrt(v_1) + epsilon) + wd * weight_0)
/dports/misc/py-tvm/incubator-tvm-0.6.1/nnvm/tests/python/compiler/
H A Dtest_optimizer.py76 weight_0 = weight - base_lr * lr_factor * (gradient_0 + wd * weight)
77 gradient_1 = data * 2 * weight_0 * rescale_grad
79 weight_1 = weight_0 - base_lr * (lr_factor ** 2) * (gradient_1 + wd * weight_0)
120 weight_0 = weight - lr_0 * (m_0 / (np.sqrt(v_0) + epsilon) + wd * weight)
123 gradient_1 = data * 2 * weight_0 * rescale_grad
127 weight_1 = weight_0 - lr_1 * (m_1 / (np.sqrt(v_1) + epsilon) + wd * weight_0)
/dports/multimedia/libgav1/libgav1-0.17.0/src/dsp/
H A Ddistance_weighted_blend.cc32 const uint8_t weight_0, const uint8_t weight_1, in DistanceWeightedBlend_C() argument
52 int res = pred_0[x] * weight_0 + pred_1[x] * weight_1; in DistanceWeightedBlend_C()
H A Ddistance_weighted_blend_test.cc106 const uint8_t weight_0 = kQuantizedDistanceLookup[index][0]; in Test() local
137 func_(source1_, source2_, weight_0, weight_1, width_, height_, dest_, in Test()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libgav1/src/src/dsp/
H A 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()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libgav1/src/src/dsp/
H A 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()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/decoders/
H A Dwavpack.c1501 int weight_0, argument
1516 weight_0,
1552 apply_weight(weight_0, decorr_1->_[i]) +
1557 weight_0 += update_weight(decorr_1->_[i],
1563 weight_0 = MAX(MIN(weight_0, 1024), -1024);
1573 apply_weight(weight_0, decorr_1->_[i + 1]) +
1578 weight_0 += update_weight(decorr_1->_[i + 1],
1582 weight_0 = MAX(MIN(weight_0, 1024), -1024);
1588 apply_weight(weight_0, decorr_1->_[i]) +
1593 weight_0 += update_weight(decorr_1->_[i],
[all …]
H A Dwavpack.h351 int weight_0,
/dports/multimedia/libgav1/libgav1-0.17.0/src/dsp/arm/
H A Ddistance_weighted_blend_neon.cc130 const void* LIBGAV1_RESTRICT prediction_1, const uint8_t weight_0, in DistanceWeightedBlend_NEON() argument
135 int16x4_t weights[2] = {vdup_n_s16(weight_0), vdup_n_s16(weight_1)}; in DistanceWeightedBlend_NEON()
269 const uint8_t weight_0, const uint8_t weight_1, in DistanceWeightedBlend_NEON() argument
277 const uint16x4_t weights[2] = {vdup_n_u16(weight_0), vdup_n_u16(weight_1)}; in DistanceWeightedBlend_NEON()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libgav1/src/src/dsp/arm/
H A Ddistance_weighted_blend_neon.cc130 const uint8_t weight_0, in DistanceWeightedBlend_NEON() argument
136 int16x4_t weights[2] = {vdup_n_s16(weight_0), vdup_n_s16(weight_1)}; in DistanceWeightedBlend_NEON()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libgav1/src/src/dsp/arm/
H A Ddistance_weighted_blend_neon.cc130 const uint8_t weight_0, in DistanceWeightedBlend_NEON() argument
136 int16x4_t weights[2] = {vdup_n_s16(weight_0), vdup_n_s16(weight_1)}; in DistanceWeightedBlend_NEON()
/dports/graphics/gegl/gegl-0.4.34/operations/common/
H A Dcolor-warp.c38 property_double (weight_0, _("weight 0"), 100.0)
233 maybe_add_pair (cw, o->from_0, o->to_0, o->weight * o->weight_0, format);
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/
H A Dpaint_palette.py566 weight = pp.weight_0
594 weight = palette_props.weight_0
724 pp.weight_0 = weight
803 weight_0: FloatProperty(
/dports/multimedia/gstreamer1-plugins-svt-av1/SVT-AV1-3971c982311d49f9355dc8dccdcf8d21b70fa624/Source/Lib/Encoder/ASM_SSE4_1/
H A DEbTemporalFiltering_sse4.c95 const int rounding, const int weight_0, const int weight_1) { in average_4_4() argument
100 weight_0, weight_0, weight_0, weight_0, weight_1, weight_1, weight_1, weight_1); in average_4_4()
/dports/multimedia/svt-av1/SVT-AV1-3971c982311d49f9355dc8dccdcf8d21b70fa624/Source/Lib/Encoder/ASM_SSE4_1/
H A DEbTemporalFiltering_sse4.c95 const int rounding, const int weight_0, const int weight_1) { in average_4_4() argument
100 weight_0, weight_0, weight_0, weight_0, weight_1, weight_1, weight_1, weight_1); in average_4_4()
/dports/graphics/freeimage/FreeImage/Source/LibWebP/src/enc/
H A 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()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libwebp/src/enc/
H A 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()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/libwebp-sys2-0.1.2/c_src/src/enc/
H A 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()
/dports/devel/godot/godot-3.2.3-stable/thirdparty/libwebp/src/enc/
H A 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()
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/libwebp/src/enc/
H A 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()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libwebp/src/enc/
H A 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()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/libwebp/src/enc/
H A 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()

123