Home
last modified time | relevance | path

Searched refs:get_scale (Results 1 – 22 of 22) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_selectivecolor.c73 get_range_scale_func get_scale; member
171 …if (pr->mask & (1<<RANGE_REDS | 1<<RANGE_GREENS | 1<<RANGE_BLUES)) pr->get_scale = get_r… in register_range()
172 …else if (pr->mask & (1<<RANGE_CYANS | 1<<RANGE_MAGENTAS | 1<<RANGE_YELLOWS)) pr->get_scale = get_c… in register_range()
173 …else if (!s->is_16bit && (pr->mask & 1<<RANGE_WHITES)) pr->get_scale = get_w… in register_range()
174 …else if (!s->is_16bit && (pr->mask & 1<<RANGE_NEUTRALS)) pr->get_scale = get_n… in register_range()
175 …else if (!s->is_16bit && (pr->mask & 1<<RANGE_BLACKS)) pr->get_scale = get_b… in register_range()
176 …else if ( s->is_16bit && (pr->mask & 1<<RANGE_WHITES)) pr->get_scale = get_w… in register_range()
177 …else if ( s->is_16bit && (pr->mask & 1<<RANGE_NEUTRALS)) pr->get_scale = get_n… in register_range()
178 …else if ( s->is_16bit && (pr->mask & 1<<RANGE_BLACKS)) pr->get_scale = get_b… in register_range()
368 … const int scale = pr->get_scale(r, g, b, min_color, max_color); \
/third_party/boost/boost/gil/extension/numeric/
Daffine.hpp36 static matrix3x2 get_scale(point<T> const& s) in get_scale() function in boost::gil::matrix3x2
40 static matrix3x2 get_scale(T x, T y) { return matrix3x2(x, 0,0,y, 0 ,0 ); } in get_scale() function in boost::gil::matrix3x2
41 static matrix3x2 get_scale(T s) { return matrix3x2(s ,0,0,s ,0 ,0 ); } in get_scale() function in boost::gil::matrix3x2
/third_party/weston/clients/
Dimage.c68 get_scale(struct image *image) in get_scale() function
80 double scale = get_scale(image); in clamp_view()
206 double scale = get_scale(image); in move_viewport()
269 if (get_scale(image) * scale > 20.0 || in zoom()
270 get_scale(image) * scale < 0.02) in zoom()
/third_party/boost/libs/gil/test/extension/numeric/
Dmatrix3x2.cpp137 m1 = gil::matrix3x2<int>::get_scale(2); in test_matrix3x2_get_scale()
144 m1 = gil::matrix3x2<int>::get_scale(2, 4); in test_matrix3x2_get_scale()
147 m1 = gil::matrix3x2<int>::get_scale(gil::point<int>{4, 8}); in test_matrix3x2_get_scale()
/third_party/mindspore/mindspore/core/ops/fusion/
Dpow_fusion.h56 float get_scale() const;
Dexp_fusion.h69 float get_scale() const;
Dexp_fusion.cc43 float ExpFusion::get_scale() const { in get_scale() function in mindspore::ops::ExpFusion
Dpow_fusion.cc34 float PowFusion::get_scale() const { return GetValue<float>(GetAttr(kScale)); } in get_scale() function in mindspore::ops::PowFusion
/third_party/mindspore/mindspore/core/ops/grad/
Dpower_grad.h40 float get_scale() const;
Dpower_grad.cc37 float PowerGrad::get_scale() const { in get_scale() function in mindspore::ops::PowerGrad
/third_party/mindspore/mindspore/core/ops/
Droi_pooling.h78 float get_scale() const;
Dproposal.h49 std::vector<float> get_scale() const;
Ddetection_post_process.h53 std::vector<float> get_scale() const;
Droi_pooling.cc41 float ROIPooling::get_scale() const { in get_scale() function in mindspore::ops::ROIPooling
Dproposal.cc56 std::vector<float> Proposal::get_scale() const { in get_scale() function in mindspore::ops::Proposal
Ddetection_post_process.cc51 std::vector<float> DetectionPostProcess::get_scale() const { in get_scale() function in mindspore::ops::DetectionPostProcess
/third_party/boost/boost/histogram/axis/
Dregular.hpp58 R get_scale(const T& t) { in get_scale() function
222 , min_(this->forward(detail::get_scale(start)))
223 , delta_(this->forward(detail::get_scale(stop)) - min_) {
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_drawpixels.c85 get_scale(lower_drawpixels_state *state) in get_scale() function
166 def = nir_ffma(b, def, get_scale(state), get_bias(state)); in lower_color()
/third_party/mindspore/mindspore/lite/src/train/
Doptimizer_kernel.h197 auto scale = t->get_scale(); in PreProcess()
Dtrain_utils.cc159 restore_tensor->set_scale(tensor->get_scale()); in CastTensor()
Dtrain_session.cc372 scale *= tensor->get_scale(); in MixPrecisionPostProcess()
/third_party/mindspore/mindspore/lite/src/
Dtensor.h217 float get_scale() const { return this->scale_; } in get_scale() function