Home
last modified time | relevance | path

Searched refs:coeff_type (Results 1 – 25 of 188) sorted by relevance

12345678

/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/teuchos/numerics/src/
H A DTeuchos_PolynomialTraits.hpp62 typedef Scalar coeff_type; typedef in Teuchos::PolynomialTraits
68 static inline Teuchos::RCP<coeff_type> clone(const coeff_type& c) { in clone()
69 return Teuchos::rcp(new coeff_type(c)); in clone()
73 static inline void copy(const coeff_type& x, coeff_type* y) { in copy()
78 static inline void assign(coeff_type* y, const scalar_type& alpha) { in assign()
83 static inline void update(coeff_type* y, const coeff_type& x, in update()
/dports/math/mfem/mfem-4.3/tests/unit/ceed/
H A Dtest_ceed.cpp68 std::string getString(CeedCoeffType coeff_type) in getString() argument
70 switch (coeff_type) in getString()
145 const CeedCoeffType coeff_type, GridFunction *&gf, in InitCoeff() argument
149 switch (coeff_type) in InitCoeff()
196 "coeff_type: " + getString(coeff_type) + "\n" + in test_ceed_operator()
211 InitCoeff(mesh, fec, dim, coeff_type, gf, coeff_fes, coeff, vcoeff); in test_ceed_operator()
274 const CeedCoeffType coeff_type, in test_ceed_nloperator() argument
293 InitCoeff(mesh, fec, dim, coeff_type, gf, coeff_fes, coeff, vcoeff); in test_ceed_nloperator()
343 test_ceed_operator(mesh, order, coeff_type, pb, assembly);
359 test_ceed_operator(mesh, order, coeff_type, pb, assembly);
[all …]
/dports/math/lib2geom/lib2geom-1.1/include/2geom/symbolic/
H A Dmultipoly.h63 typedef CoeffT coeff_type; typedef
101 MultiPoly& operator=(coeff_type const& c)
118 coeff_type const& leading_coefficient() const in leading_coefficient()
124 coeff_type & leading_coefficient() in leading_coefficient()
130 coeff_type const& trailing_coefficient() const in trailing_coefficient()
135 coeff_type & trailing_coefficient() in trailing_coefficient()
164 typename poly_type::coeff_type const&
170 typename poly_type::coeff_type &
177 typename poly_type::coeff_type const&
399 static const coeff_type zero_coeff;
[all …]
H A Dpolynomial.h63 typedef CoeffT coeff_type; typedef
180 coeff_type const& operator[] (size_t i) const
185 coeff_type & operator[] (size_t i)
191 coeff_type const& coefficient(size_t i) const in coefficient()
220 coeff_type const& leading_coefficient() const in leading_coefficient()
225 coeff_type & leading_coefficient() in leading_coefficient()
323 Polynomial& operator=(coeff_type const& c)
329 Polynomial& operator+=(coeff_type const& c)
335 Polynomial& operator-=(coeff_type const& c)
341 Polynomial& operator*=(coeff_type const& c)
[all …]
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/include/2geom/symbolic/
H A Dpolynomial.h63 typedef CoeffT coeff_type; typedef
180 coeff_type const& operator[] (size_t i) const
185 coeff_type & operator[] (size_t i)
191 coeff_type const& coefficient(size_t i) const in coefficient()
220 coeff_type const& leading_coefficient() const in leading_coefficient()
225 coeff_type & leading_coefficient() in leading_coefficient()
323 Polynomial& operator=(coeff_type const& c)
329 Polynomial& operator+=(coeff_type const& c)
335 Polynomial& operator-=(coeff_type const& c)
341 Polynomial& operator*=(coeff_type const& c)
[all …]
H A Dmultipoly.h62 typedef CoeffT coeff_type; typedef
100 MultiPoly& operator=(coeff_type const& c)
117 coeff_type const& leading_coefficient() const in leading_coefficient()
123 coeff_type & leading_coefficient() in leading_coefficient()
129 coeff_type const& trailing_coefficient() const in trailing_coefficient()
134 coeff_type & trailing_coefficient() in trailing_coefficient()
163 typename poly_type::coeff_type const&
169 typename poly_type::coeff_type &
176 typename poly_type::coeff_type const&
398 static const coeff_type zero_coeff;
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/layout/style/
H A DCSSCalc.h111 typename CalcOps::coeff_type lhs = aOps.ComputeCoefficient(arr->Item(0)); in ComputeCalc()
127 typename CalcOps::coeff_type rhs = aOps.ComputeCoefficient(arr->Item(1)); in ComputeCalc()
155 typedef float coeff_type; typedef
166 result_type MergeMultiplicativeL(nsCSSUnit aCalcFunction, coeff_type aValue1, in MergeMultiplicativeL()
173 coeff_type aValue2) { in MergeMultiplicativeR()
190 typedef float coeff_type; typedef
192 coeff_type ComputeCoefficient(const nsCSSValue &aValue) { in ComputeCoefficient()
348 typedef type coeff_type; typedef
366 coeff_type aValue2) { in MergeMultiplicativeR()
388 coeff_type ComputeCoefficient(const nsCSSValue &aValue) { in ComputeCoefficient()
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/pecos/test/
H A DTestFunctions.hpp71 int coeff_type, fn_type; in genz() local
74 { coeff_type = 0; fn_type = 0; factor = 4.5; } in genz()
76 { coeff_type = 1; fn_type = 0; factor = 4.5; } in genz()
78 { coeff_type = 2; fn_type = 0; factor = 4.5; } in genz()
80 { coeff_type = 0; fn_type = 1; factor = .25; } in genz()
82 { coeff_type = 1; fn_type = 1; factor = .25; } in genz()
84 { coeff_type = 2; fn_type = 1; factor = .25; } in genz()
93 get_genz_coefficients( numVars, factor, coeff_type, c, w ); in genz()
/dports/math/mfem/mfem-4.3/tests/unit/fem/
H A Dtest_sparse_matrix.cpp42 static std::string getString(Coeff coeff_type) in getString() argument
44 switch (coeff_type) in getString()
80 void test_sparse_matrix(const char* input, int order, const Coeff coeff_type, in test_sparse_matrix() argument
86 "coeff_type: " + getString(coeff_type) + "\n" + in test_sparse_matrix()
117 switch (coeff_type) in test_sparse_matrix()
192 auto coeff_type = GENERATE(Coeff::Const,Coeff::Grid,Coeff::Quad); variable
199 test_sparse_matrix(mesh, order, coeff_type, pb, keep_nbr_block, basis);
/dports/graphics/freeimage/FreeImage/Source/LibWebP/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/libwebp-sys2-0.1.2/c_src/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/devel/godot/godot-3.2.3-stable/thirdparty/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/www/firefox/firefox-99.0/media/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/graphics/webp/libwebp-1.2.1/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/bep/gowebp/libwebp_src/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/graphics/opencv/opencv-4.5.3/3rdparty/libwebp/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/www/zola/zola-0.15.2/cargo-crates/libwebp-sys-0.2.0/vendor/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/WebP/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()
/dports/graphics/dssim/dssim-3.1.2/cargo-crates/libwebp-sys2-0.1.2/c_src/src/enc/
H A Dcost_enc.c206 void VP8InitResidual(int first, int coeff_type, in VP8InitResidual() argument
208 res->coeff_type = coeff_type; in VP8InitResidual()
209 res->prob = enc->proba_.coeffs_[coeff_type]; in VP8InitResidual()
210 res->stats = enc->proba_.stats_[coeff_type]; in VP8InitResidual()
211 res->costs = enc->proba_.remapped_costs_[coeff_type]; in VP8InitResidual()

12345678