Home
last modified time | relevance | path

Searched refs:_R2 (Results 1 – 12 of 12) sorted by relevance

/external/libcxx/include/
Dratio276 template <class _R1, class _R2>
280 static const intmax_t __gcd_n1_d2 = __static_gcd<_R1::num, _R2::den>::value;
281 static const intmax_t __gcd_d1_n2 = __static_gcd<_R1::den, _R2::num>::value;
285 __ll_mul<_R1::num / __gcd_n1_d2, _R2::num / __gcd_d1_n2>::value,
286 __ll_mul<_R2::den / __gcd_n1_d2, _R1::den / __gcd_d1_n2>::value
292 template <class _R1, class _R2> using ratio_multiply
293 = typename __ratio_multiply<_R1, _R2>::type;
297 template <class _R1, class _R2>
299 : public __ratio_multiply<_R1, _R2>::type {};
303 template <class _R1, class _R2>
[all …]
D__functional_03457 template <class _R2>
459 static bool __not_null(_R2 (*__p)()) {return __p;}
460 template <class _R2>
462 static bool __not_null(const function<_R2()>& __p) {return __p;}
510 template<class _R2>
511 bool operator==(const function<_R2()>&) const;// = delete;
512 template<class _R2>
513 bool operator!=(const function<_R2()>&) const;// = delete;
742 template <class _R2, class _B0>
744 static bool __not_null(_R2 (*__p)(_B0)) {return __p;}
[all …]
Ddeque177 class _V2, class _P2, class _R2, class _M2, class _D2, _D2 _B2>
178 __deque_iterator<_V2, _P2, _R2, _M2, _D2, _B2>
181 __deque_iterator<_V2, _P2, _R2, _M2, _D2, _B2> __r,
192 class _V2, class _P2, class _R2, class _M2, class _D2, _D2 _B2>
193 __deque_iterator<_V2, _P2, _R2, _M2, _D2, _B2>
196 __deque_iterator<_V2, _P2, _R2, _M2, _D2, _B2> __r);
199 class _V2, class _P2, class _R2, class _M2, class _D2, _D2 _B2>
200 __deque_iterator<_V2, _P2, _R2, _M2, _D2, _B2>
203 __deque_iterator<_V2, _P2, _R2, _M2, _D2, _B2> __r,
214 class _V2, class _P2, class _R2, class _M2, class _D2, _D2 _B2>
[all …]
Dfunctional1474 template <class _R2, class ..._Ap>
1476 static bool __not_null(_R2 (*__p)(_Ap...)) {return __p;}
1477 template <class _R2, class _Cp, class ..._Ap>
1479 static bool __not_null(_R2 (_Cp::*__p)(_Ap...)) {return __p;}
1480 template <class _R2, class _Cp, class ..._Ap>
1482 static bool __not_null(_R2 (_Cp::*__p)(_Ap...) const) {return __p;}
1483 template <class _R2, class _Cp, class ..._Ap>
1485 static bool __not_null(_R2 (_Cp::*__p)(_Ap...) volatile) {return __p;}
1486 template <class _R2, class _Cp, class ..._Ap>
1488 static bool __not_null(_R2 (_Cp::*__p)(_Ap...) const volatile) {return __p;}
[all …]
Dchrono413 template <class _R1, class _R2>
417 static const intmax_t __gcd_n1_n2 = __static_gcd<_R1::num, _R2::num>::value;
418 static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value;
421 static const intmax_t __n2 = _R2::num / __gcd_n1_n2;
422 static const intmax_t __d2 = _R2::den / __gcd_d1_d2;
/external/libcxx/include/experimental/
Dratio53 template <class _R1, class _R2> _LIBCPP_CONSTEXPR bool ratio_equal_v
54 = ratio_equal<_R1, _R2>::value;
56 template <class _R1, class _R2> _LIBCPP_CONSTEXPR bool ratio_not_equal_v
57 = ratio_not_equal<_R1, _R2>::value;
59 template <class _R1, class _R2> _LIBCPP_CONSTEXPR bool ratio_less_v
60 = ratio_less<_R1, _R2>::value;
62 template <class _R1, class _R2> _LIBCPP_CONSTEXPR bool ratio_less_equal_v
63 = ratio_less_equal<_R1, _R2>::value;
65 template <class _R1, class _R2> _LIBCPP_CONSTEXPR bool ratio_greater_v
66 = ratio_greater<_R1, _R2>::value;
[all …]
/external/v8/test/mjsunit/regress/
Dregress-2318.js51 var _R0 = 85; var _R1 = 86; var _R2 = 87; var _R3 = 88; var _R4 = 89;
/external/opencv3/modules/calib3d/test/
Dtest_cameracalibration.cpp1609 vector<Mat> _R1, _R2, _T1, _T2; in run() local
1611 calibrateCamera( objpt, imgpt2, imgsize, _M2, _D2, _R2, _T2, 0 ); in run()
1755 CvMat matR = R, matT = T, _R1 = R1, _R2 = R2, _P1 = P1, _P2 = P2, matQ = Q; in rectify() local
1757 imageSize, &matR, &matT, &_R1, &_R2, &_P1, &_P2, &matQ, flags, in rectify()
/external/opencv/cv/src/
Dcvcalibration.cpp391 double _R1[9], _d1[9*3], _R2[9], _d2[9*3]; in cvComposeRT() local
393 CvMat R1 = cvMat(3,3,CV_64F,_R1), R2 = cvMat(3,3,CV_64F,_R2); in cvComposeRT()
2281 CvMat* _R1, CvMat* _R2, CvMat* _P1, CvMat* _P2, in cvStereoRectify() argument
2320 cvConvert( &Ri, _R2 ); in cvStereoRectify()
2350 cvProjectPoints2( &pts_3, k == 0 ? _R1 : _R2, &Z, A, 0, &pts ); in cvStereoRectify()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/opencv3/modules/calib3d/src/
Dcalibration.cpp158 double _R1[9], _d1[9*3], _R2[9], _d2[9*3]; in cvComposeRT() local
160 CvMat R1 = cvMat(3,3,CV_64F,_R1), R2 = cvMat(3,3,CV_64F,_R2); in cvComposeRT()
2143 CvMat* _R1, CvMat* _R2, CvMat* _P1, CvMat* _P2, in cvStereoRectify() argument
2186 cvConvert( &Ri, _R2 ); in cvStereoRectify()
2230 cvProjectPoints2( &pts_3, k == 0 ? _R1 : _R2, &Z, &A_tmp, 0, &pts ); in cvStereoRectify()
2267 icvGetRectangles( _cameraMatrix2, _distCoeffs2, _R2, _P2, imageSize, inner2, outer2 ); in cvStereoRectify()
Dfive-point.cpp594 void cv::decomposeEssentialMat( InputArray _E, OutputArray _R1, OutputArray _R2, OutputArray _t ) in decomposeEssentialMat() argument
614 R2.copyTo(_R2); in decomposeEssentialMat()