Home
last modified time | relevance | path

Searched refs:x1_ (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/dports/textproc/fcitx5/fcitx5-5.0.11/src/lib/fcitx-utils/
H A Drect.h23 : x1_(_x1), y1_(_y1), x2_(_x2), y2_(_y2) {} in x1_() function
28 x1_ = x; in setPosition()
34 x2_ = width + x1_; in setSize()
40 x1_ = pos; in setLeft()
58 tmp.x1_ = std::max(x1_, rect.x1_); in intersected()
62 if (tmp.x1_ < tmp.x2_ && tmp.y1_ < tmp.y2_) { in intersected()
86 if (x < x1_) { in distance()
87 dx = x1_ - x; in distance()
99 inline int left() const noexcept { return x1_; } in left()
108 return x1_ == other.x1_ && x2_ == other.x2_ && y1_ == other.y1_ &&
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/rpl/rgrl/
H A Drgrl_mask_3d_image.cxx25 bool in_range = ( x0_[0] <= x ) && ( x <= x1_[0] ) && in inside()
26 ( x0_[1] <= y ) && ( y <= x1_[1] ) && in inside()
27 ( x0_[2] <= z ) && ( z <= x1_[2] ); in inside()
40 x1_[0] = 0.0; in update_bounding_box()
41 x1_[1] = 0.0; in update_bounding_box()
42 x1_[2] = 0.0; in update_bounding_box()
53 if ( x1_[0] < double(i) ) x1_[0] = double(i); in update_bounding_box()
54 if ( x1_[1] < double(j) ) x1_[1] = double(j); in update_bounding_box()
55 if ( x1_[2] < double(k) ) x1_[2] = double(k); in update_bounding_box()
62 x1_.fill( 0.0 ); in update_bounding_box()
H A Drgrl_mask.cxx14 rgrl_mask_box box( x0_, x1_ ); in bounding_box()
51 x1_[0] = 0.0; in update_bounding_box()
52 x1_[1] = 0.0; in update_bounding_box()
62 if ( x1_[0] < double(i) ) x1_[0] = double(i); in update_bounding_box()
63 if ( x1_[1] < double(j) ) x1_[1] = double(j); in update_bounding_box()
71 x1_.fill( 0.0 ); in update_bounding_box()
135 x1_.set_size( m ); in update_bounding_box()
162 x1_ = x1; in rgrl_mask_box()
191 assert( v.size() == x1_.size() || !x1_.size() ); in set_x1()
192 x1_ = v; in set_x1()
[all …]
/dports/misc/openmvg/openMVG-2.0/src/openMVG/robust_estimation/
H A Drobust_estimator_ACRansacKernelAdaptator.hpp124 assert(2 == x1_.rows()); in ACKernelAdaptor()
125 assert(x1_.rows() == x2_.rows()); in ACKernelAdaptor()
126 assert(x1_.cols() == x2_.cols()); in ACKernelAdaptor()
167 vec_errors.resize(x1_.cols()); in Errors()
306 ):x1_(x1), in ACKernelAdaptorEssential()
314 assert(2 == x1_.rows()); in ACKernelAdaptorEssential()
315 assert(x1_.rows() == x2_.rows()); in ACKernelAdaptorEssential()
358 vec_errors.resize(x1_.cols()); in Errors()
477 x1_(xA), x2_(xB), in ACKernelAdaptor_AngularRadianError()
480 assert(3 == x1_.rows()); in ACKernelAdaptor_AngularRadianError()
[all …]
/dports/science/gromacs/gromacs-2021.4/src/gromacs/math/tests/
H A Ddofit.cpp66 rvec* x1_ = gmx::as_rvec_array(structureA_.data()); member in __anon60079f110111::StructureSimilarityTest
73 EXPECT_REAL_EQ_TOL(0., rmsdev(c_nAtoms, m_, x1_, x1_), defaultRealTolerance()); in TEST_F()
78 EXPECT_REAL_EQ_TOL(0., rhodev(c_nAtoms, m_, x1_, x1_), defaultRealTolerance()); in TEST_F()
83 EXPECT_REAL_EQ_TOL(sqrt(2.0), rmsdev(c_nAtoms, m_, x1_, x2_), defaultRealTolerance()); in TEST_F()
88 EXPECT_REAL_EQ_TOL(2., rhodev(c_nAtoms, m_, x1_, x2_), defaultRealTolerance()); in TEST_F()
93 EXPECT_REAL_EQ_TOL(sqrt(2.0), rmsdev_ind(index_.size(), index_.data(), m_, x1_, x2_), in TEST_F()
99 …EXPECT_REAL_EQ_TOL(2., rhodev_ind(index_.size(), index_.data(), m_, x1_, x2_), defaultRealToleranc… in TEST_F()
/dports/devel/nextpnr/nextpnr-48cd407/gui/
H A Dquadtree.h37 CoordinateT x0_, y0_, x1_, y1_;
55 …BoundingBox(const BoundingBox &other) : x0_(other.x0_), y0_(other.y0_), x1_(other.x1_), y1_(other.… in BoundingBox()
65 if (x < x0_ || x > x1_) in contains()
75 if (x1_ < x0_) in fixup()
76 std::swap(x0_, x1_); in fixup()
83 CoordinateT x1() const { return x1_; } in x1()
88 void setX1(CoordinateT v) { x1_ = v; } in setX1()
95 x1_ = ninf; in clear()
99 CoordinateT w() const { return x1_ - x0_; } in w()
144 } else if (b.x1_ < bound_.x0_ || b.x1_ > bound_.x1_) { in fits()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/layout/shapes/
H A Dshape_interval.h42 ShapeInterval() : x1_(-1), x2_(-2) { in ShapeInterval()
48 ShapeInterval(T x1, T x2) : x1_(x1), x2_(x2) { DCHECK_GE(x2, x1); } in ShapeInterval()
50 bool IsUndefined() const { return x2_ < x1_; } in IsUndefined()
51 T X1() const { return IsUndefined() ? 0 : x1_; } in X1()
53 T Width() const { return IsUndefined() ? 0 : x2_ - x1_; } in Width()
54 bool IsEmpty() const { return IsUndefined() ? true : x1_ == x2_; } in IsEmpty()
58 x1_ = x1; in Set()
91 T x1_;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/layout/shapes/
H A Dshape_interval.h42 ShapeInterval() : x1_(-1), x2_(-2) { in ShapeInterval()
48 ShapeInterval(T x1, T x2) : x1_(x1), x2_(x2) { DCHECK_GE(x2, x1); } in ShapeInterval()
50 bool IsUndefined() const { return x2_ < x1_; } in IsUndefined()
51 T X1() const { return IsUndefined() ? 0 : x1_; } in X1()
53 T Width() const { return IsUndefined() ? 0 : x2_ - x1_; } in Width()
54 bool IsEmpty() const { return IsUndefined() ? true : x1_ == x2_; } in IsEmpty()
58 x1_ = x1; in Set()
91 T x1_;
/dports/www/wt/wt-4.6.1/src/Wt/
H A DWLineF.C14 : x1_(0), y1_(0), x2_(0), y2_(0) in WLineF()
18 : x1_(p1.x()), y1_(p1.y()), x2_(p2.x()), y2_(p2.y()) in WLineF()
22 : x1_(x1), y1_(y1), x2_(x2), y2_(y2) in WLineF()
27 return WPointF(x1_, y1_); in p1()
37 return (x1_ == other.x1_)
/dports/misc/vxl/vxl-3.3.2/core/vgl/
H A Dvgl_window_scan_iterator.h29 inline void set_window_corners(T x1_, T y1_, T x2_, T y2_) in set_window_corners() argument
32 if (x1_ > x2_) { T x=x1_; x1_=x2_; x2_=x; } in set_window_corners()
33 x1 = (int) std::ceil (x1_); in set_window_corners()
58 inline vgl_window_scan_iterator(T x1_, T y1_, T x2_, T y2_) in vgl_window_scan_iterator() argument
59 { set_window_corners(x1_, y1_, x2_, y2_); } in vgl_window_scan_iterator()
/dports/math/gap/gap-4.11.0/pkg/ToricVarieties-2019.12.05/examples/
H A DP1P1AsPolytopeOutput.g15 Q[x1,x1_,x2,x2_]/( x2*x2_-1, x1*x1_-1 )
19 [ |[ x1_*x2_ ]|, |[ x1_ ]|, |[ x1_*x2 ]|, |[ x2_ ]|,
H A DHirzebruch5Output.g35 Q[x1,x1_,x2,x2_]/( x2*x2_-1, x1*x1_-1 )
43 [ |[ x1_ ]|, |[ x1_*x2 ]|, |[ 1 ]|, |[ x2 ]|,
50 [ |[ x1_*x2_^2 ]| ]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/svg/
H A Dlinear_gradient_attributes.h35 : x1_(MakeGarbageCollected<SVGLength>(SVGLengthMode::kWidth)), in LinearGradientAttributes()
46 SVGLength* X1() const { return x1_.Get(); } in X1()
52 x1_ = value; in SetX1()
74 visitor->Trace(x1_); in Trace()
82 Member<SVGLength> x1_;
H A Dsvg_line_element.cc33 x1_(MakeGarbageCollected<SVGAnimatedLength>( in SVGLineElement()
53 AddToPropertyMap(x1_); in SVGLineElement()
60 visitor->Trace(x1_); in Trace()
93 return x1_->CurrentValue()->IsRelative() || in SelfHasRelativeLengths()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/svg/
H A Dlinear_gradient_attributes.h35 : x1_(MakeGarbageCollected<SVGLength>(SVGLengthMode::kWidth)), in LinearGradientAttributes()
46 SVGLength* X1() const { return x1_.Get(); } in X1()
52 x1_ = value; in SetX1()
74 visitor->Trace(x1_); in Trace()
82 Member<SVGLength> x1_;
H A Dsvg_line_element.cc31 x1_(MakeGarbageCollected<SVGAnimatedLength>( in SVGLineElement()
51 AddToPropertyMap(x1_); in SVGLineElement()
58 visitor->Trace(x1_); in Trace()
89 return x1_->CurrentValue()->IsRelative() || in SelfHasRelativeLengths()
/dports/math/cln/cln-1.3.6/src/float/transcendental/
H A Dcl_F_lnx.cc198 var cl_idecoded_float x1_ = integer_decode_float(x1); in lnx_ratseries()
200 if (zerop(x1_.mantissa)) in lnx_ratseries()
202 var uintC lm = integer_length(x1_.mantissa); in lnx_ratseries()
203 var uintE me = cl_I_to_UE(- x1_.exponent); in lnx_ratseries()
208 p = x1_.sign; // 1 or -1 in lnx_ratseries()
214 p = x1_.mantissa >> (lm - n); in lnx_ratseries()
217 p = x1_.mantissa; in lnx_ratseries()
220 if (minusp(x1_.sign)) { p = -p; } in lnx_ratseries()
/dports/misc/openmvg/openMVG-2.0/src/openMVG/multiview/
H A Dtwo_view_kernel.hpp71 Kernel(const Mat &x1, const Mat &x2) : x1_(x1), x2_(x2) {} in Kernel()
84 x1 = ExtractColumns(x1_, samples), in Fit()
90 return ErrorArg::Error(model, x1_.col(sample), x2_.col(sample)); in Error()
94 return x1_.cols(); in NumSamples()
102 const Mat & x1_, & x2_; // Left/Right corresponding point member in openMVG::two_view::kernel::Kernel
/dports/science/octopus/octopus-10.5/src/math/
H A Dnfft.F90342 FLOAT :: x1_(1:nfft%M(1)), x2_(1:nfft%M(2)), x3_(1:nfft%M(3))
356 x1_ =(X1-cc)/length
363 call oct_nfft_precompute_one_psi_3d(nfft%plan, nfft%M, x1_, x2_, x3_)
367 dX1(ii)= abs(x1_(ii+1)-x1_(ii))
380 x1_ =(X1-cc)/length
384 call oct_nfft_precompute_one_psi_2d(nfft%plan, nfft%M, x1_, x2_)
388 dX1(ii)= abs(x1_(ii+1)-x1_(ii))
399 x1_ =(X1-cc)/length
400 call oct_nfft_precompute_one_psi_1d(nfft%plan,nfft%M(1),x1_)
404 dX1(ii)= abs(x1_(ii+1)-x1_(ii))
/dports/devel/hyperscan/boost_1_75_0/libs/endian/test/
H A Dendian_reverse_test4.cpp50 X x1_; member
56 return y1.x1_ == y2.x1_ && y1.x2_[0] == y2.x2_[0] && y1.x2_[1] == y2.x2_[1]; in operator ==()
63 endian_reverse_inplace( y.x1_ ); in endian_reverse_inplace()
/dports/graphics/blender/blender-2.91.0/intern/libmv/libmv/multiview/
H A Dtwo_view_kernel.h107 Kernel(const Mat &x1, const Mat &x2) : x1_(x1), x2_(x2) {} in Kernel()
112 Mat x1 = ExtractColumns(x1_, samples); in Fit()
118 static_cast<Vec>(x1_.col(sample)), in Error()
122 return x1_.cols(); in NumSamples()
129 const Mat &x1_;
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/sfm/src/libmv_light/libmv/multiview/
H A Dtwo_view_kernel.h107 Kernel(const Mat &x1, const Mat &x2) : x1_(x1), x2_(x2) {} in Kernel()
112 Mat x1 = ExtractColumns(x1_, samples); in Fit()
118 static_cast<Vec>(x1_.col(sample)), in Error()
122 return x1_.cols(); in NumSamples()
129 const Mat &x1_;
/dports/misc/vxl/vxl-3.3.2/core/vgui/
H A Dvgui_soview3D.h50 float x1_, float y1_, float z1_ ) in vgui_lineseg3D() argument
51 : x0(x0_), y0(y0_), z0(z0_), x1(x1_), y1(y1_), z1(z1_) {} in vgui_lineseg3D()
67 float x1_, float y1_, float z1_, in vgui_triangle3D() argument
70 x1(x1_), y1(y1_), z1(z1_), in vgui_triangle3D()
/dports/games/construo/construo-0.2.3/src/
H A Drect.hpp38 Rect (const T& x1_, in Rect() argument
42 : x1 (Math::min(x1_, x2_)), in Rect()
44 x2 (Math::max(x1_, x2_)), in Rect()
/dports/misc/vxl/vxl-3.3.2/contrib/oxl/mvl/
H A DLineSeg.cxx16 x1_ = x1; in LineSeg()
27 << l.x1_ << ' ' in operator <<()
36 return s >> l.x0_ >> l.y0_ >> l.x1_ >> l.y1_ >> l.theta_ >> l.grad_mean_; in operator >>()

12345678910>>...12