Lines Matching refs:rThresRes

122 									 ImplThresholdRes& rThresRes )  in ImplCalcBigIntThreshold()  argument
126 rThresRes.mnThresLogToPixX = 0; in ImplCalcBigIntThreshold()
127 rThresRes.mnThresPixToLogX = 0; in ImplCalcBigIntThreshold()
137 rThresRes.mnThresLogToPixX = LONG_MAX; in ImplCalcBigIntThreshold()
139 rThresRes.mnThresLogToPixX = Abs( (LONG_MAX - nDenomHalfX) / nProductX ); in ImplCalcBigIntThreshold()
142 rThresRes.mnThresPixToLogX = LONG_MAX; in ImplCalcBigIntThreshold()
144 rThresRes.mnThresPixToLogX = (long)(((sal_uLong)LONG_MAX - (sal_uLong)( nProductX/2)) / nDenomX); in ImplCalcBigIntThreshold()
146 rThresRes.mnThresPixToLogX = (long)(((sal_uLong)LONG_MAX + (sal_uLong)(-nProductX/2)) / nDenomX); in ImplCalcBigIntThreshold()
151 rThresRes.mnThresLogToPixY = 0; in ImplCalcBigIntThreshold()
152 rThresRes.mnThresPixToLogY = 0; in ImplCalcBigIntThreshold()
162 rThresRes.mnThresLogToPixY = LONG_MAX; in ImplCalcBigIntThreshold()
164 rThresRes.mnThresLogToPixY = Abs( (LONG_MAX - nDenomHalfY) / nProductY ); in ImplCalcBigIntThreshold()
167 rThresRes.mnThresPixToLogY = LONG_MAX; in ImplCalcBigIntThreshold()
169 rThresRes.mnThresPixToLogY = (long)(((sal_uLong)LONG_MAX - (sal_uLong)( nProductY/2)) / nDenomY); in ImplCalcBigIntThreshold()
171 rThresRes.mnThresPixToLogY = (long)(((sal_uLong)LONG_MAX + (sal_uLong)(-nProductY/2)) / nDenomY); in ImplCalcBigIntThreshold()
175 rThresRes.mnThresLogToPixX /= 2; in ImplCalcBigIntThreshold()
176 rThresRes.mnThresLogToPixY /= 2; in ImplCalcBigIntThreshold()
177 rThresRes.mnThresPixToLogX /= 2; in ImplCalcBigIntThreshold()
178 rThresRes.mnThresPixToLogY /= 2; in ImplCalcBigIntThreshold()
370 ImplThresholdRes& rThresRes ) in ImplCalcMapResolution() argument
373 ImplCalcBigIntThreshold( nDPIX, nDPIY, rMapRes, rThresRes ); in ImplCalcMapResolution()