Home
last modified time | relevance | path

Searched refs:_left (Results 1 – 14 of 14) sorted by relevance

/external/opencv3/3rdparty/openexr/Imath/
DImathFrustum.h117 T left() const { return _left; } in left()
175 T _left; variable
224 _left = f._left;
240 _left == src._left &&
259 _left = l; in set()
275 Line3<T> lowerLeft( Vec3<T>(0,0,0), Vec3<T>(_left,_bottom,-_nearPlane) ); in modifyNearAndFar()
283 _left = ll.x; in modifyNearAndFar()
311 _left = -_right; in set()
312 _top = ((_right - _left) / aspect) / two; in set()
320 _left = -_right; in set()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DPair.java27 public Pair(ASTree _left, ASTree _right) { in Pair() argument
28 left = _left; in Pair()
48 public void setLeft(ASTree _left) { left = _left; } in setLeft() argument
DASTList.java46 public void setLeft(ASTree _left) { left = _left; } in setLeft() argument
DASTree.java31 public void setLeft(ASTree _left) {} in setLeft() argument
/external/webrtc/webrtc/modules/video_render/linux/
Dvideo_x11_channel.cc30 _top(0.0), _left(0.0), _right(0.0), _bottom(0.0), in VideoX11Channel()
112 _left = left; in Init()
193 _xPos = (int) (winWidth * _left); in ChangeWindow()
195 _outWidth = (int) (winWidth * (_right - _left)); in ChangeWindow()
306 left = _left; in GetStreamProperties()
Dvideo_x11_channel.h85 float _left; variable
/external/opencv3/modules/ml/src/
Dkdtree.hpp44 Node(int _idx, int _left, int _right, float _boundary) in Node()
45 : idx(_idx), left(_left), right(_right), boundary(_boundary) {} in Node()
/external/opencv3/modules/cudastereo/src/
Dstereobm.cpp136 …void StereoBMImpl::compute(InputArray _left, InputArray _right, OutputArray _disparity, Stream& _s… in compute() argument
145 GpuMat left = _left.getGpuMat(); in compute()
Dstereobp.cpp165 …void StereoBPImpl::compute(InputArray _left, InputArray _right, OutputArray disparity, Stream& str… in compute() argument
182 GpuMat left = _left.getGpuMat(); in compute()
Dstereocsbp.cpp150 …void StereoCSBPImpl::compute(InputArray _left, InputArray _right, OutputArray disp, Stream& _strea… in compute() argument
157 GpuMat left = _left.getGpuMat(); in compute()
/external/opencv3/modules/calib3d/src/
Dstereobm.cpp899 static bool ocl_stereobm( InputArray _left, InputArray _right, in ocl_stereobm() argument
920 UMat left = _left.getUMat(), right = _right.getUMat(); in ocl_stereobm()
923 _disp.create(_left.size(), CV_16S); in ocl_stereobm()
946 FindStereoCorrespInvoker( const Mat& _left, const Mat& _right, in FindStereoCorrespInvoker()
952 left = &_left; right = &_right; in FindStereoCorrespInvoker()
/external/opencv3/modules/objdetect/src/
Dcascadedetect.hpp198 Stump(int _featureIdx, float _threshold, float _left, float _right) in Stump()
199 : featureIdx(_featureIdx), threshold(_threshold), left(_left), right(_right) {} in Stump()
/external/icu/icu4c/source/i18n/
Drbt_pars.cpp1278 RuleHalf _left(*this), _right(*this); in parseRule() local
1279 RuleHalf* left = &_left; in parseRule()
1392 right = &_left; in parseRule()
/external/opencv/cv/src/
Dcvstereogc.cpp841 CV_IMPL void cvFindStereoCorrespondenceGC( const CvArr* _left, const CvArr* _right, in cvFindStereoCorrespondenceGC() argument
852 CvMat lstub, *left = cvGetMat( _left, &lstub ); in cvFindStereoCorrespondenceGC()