Home
last modified time | relevance | path

Searched refs:fRes (Results 1 – 5 of 5) sorted by relevance

/AOO42X/main/sc/source/core/tool/
H A Dinterpr1.cxx659 double fRes = 0; in CompareFunc() local
669 fRes = 1; // empty cell > -x in CompareFunc()
671 fRes = -1; // empty cell < x in CompareFunc()
678 fRes = -1; // empty cell < "..." in CompareFunc()
689 fRes = -1; // -x < empty cell in CompareFunc()
691 fRes = 1; // x > empty cell in CompareFunc()
698 fRes = 1; // "..." > empty cell in CompareFunc()
709 fRes = -1; in CompareFunc()
711 fRes = 1; in CompareFunc()
716 fRes = -1; // number is less than string in CompareFunc()
[all …]
H A Dinterpr2.cxx2713 double fRes; in ScEuroConvert() local
2723 fRes = fVal; in ScEuroConvert()
2727 fRes = fVal * fToRate; in ScEuroConvert()
2734 fRes = fIntermediate * fToRate; in ScEuroConvert()
2737 fRes = ::rtl::math::round( fRes, nToDec ); in ScEuroConvert()
2739 PushDouble( fRes ); in ScEuroConvert()
H A Dinterpr3.cxx3343 double fRes; in ScPercentrank() local
3358 fRes = (double)nOldCount/(double)(nSize-1); in ScPercentrank()
3368 fRes = 0.0; in ScPercentrank()
3374 fRes = ( (double)(nOldCount-1)+fFract )/(double)(nSize-1); in ScPercentrank()
3377 PushDouble(fRes); in ScPercentrank()
3904 double fRes = 0.0; in ScProbability() local
3920 fRes += fP; in ScProbability()
3929 PushDouble(fRes); in ScProbability()
/AOO42X/main/extensions/source/scanner/
H A Dsanedlg.cxx192 double fRes; in InitFields() local
194 bSuccess = mrSane.GetOptionValue( nOption, fRes ); in InitFields()
199 maReslBox.SetValue( (long)fRes ); in InitFields()
473 double fRes = (double)maReslBox.GetValue(); in IMPL_LINK() local
474 SetAdjustedNumericalValue( "resolution", fRes ); in IMPL_LINK()
596 double fRes = (double)maReslBox.GetValue(); in IMPL_LINK() local
607 if( fRes == pDouble[i] ) in IMPL_LINK()
611 fRes = pDouble[0]; in IMPL_LINK()
615 if( fRes < pDouble[ 0 ] ) in IMPL_LINK()
616 fRes = pDouble[ 0 ]; in IMPL_LINK()
[all …]
/AOO42X/main/basegfx/source/workbench/
H A Dbezierclip.cxx652 Point2D::value_type fRes[2]; in Impl_calcFocus() local
712 if( !solve(fMatrix, 2, 3, fRes, minPivotValue) ) in Impl_calcFocus()
717 fRes[0] = 0.0; in Impl_calcFocus()
718 fRes[1] = 1.0; in Impl_calcFocus()
759 res.p0.x = c.p0.x - 3*fRes[0]*(c.p1.y - c.p0.y); in Impl_calcFocus()
760 res.p1.x = c.p1.x - fRes[1]*(c.p1.y - c.p0.y) - 2*fRes[0]*(c.p2.y - c.p1.y); in Impl_calcFocus()
761 res.p2.x = c.p2.x - 2*fRes[1]*(c.p2.y - c.p1.y) - fRes[0]*(c.p3.y - c.p2.y); in Impl_calcFocus()
762 res.p3.x = c.p3.x - 3*fRes[1]*(c.p3.y - c.p2.y); in Impl_calcFocus()
764 res.p0.y = c.p0.y + 3*fRes[0]*(c.p1.x - c.p0.x); in Impl_calcFocus()
765 res.p1.y = c.p1.y + 2*fRes[0]*(c.p2.x - c.p1.x) + fRes[1]*(c.p1.x - c.p0.x); in Impl_calcFocus()
[all …]