Lines Matching refs:mYScale
274 dump += StringPrintf(INDENT4 "YScale: %0.3f\n", mYScale); in dump()
827 mYScale = float(mRawSurfaceHeight) / rawHeight; in configureSurface()
831 mYPrecision = 1.0f / mYScale; in configureSurface()
843 mGeometricScale = avg(mXScale, mYScale); in configureSurface()
1012 mOrientedRanges.x.resolution = mRawPointerAxes.y.resolution * mYScale; in configureSurface()
1035 mOrientedRanges.y.resolution = mRawPointerAxes.y.resolution * mYScale; in configureSurface()
2288 left = float(rawTop - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; in cookPointerData()
2289 right = float(rawBottom - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; in cookPointerData()
2302 bottom = float(mRawPointerAxes.y.maxValue - rawTop) * mYScale + mYTranslate; in cookPointerData()
2303 top = float(mRawPointerAxes.y.maxValue - rawBottom) * mYScale + mYTranslate; in cookPointerData()
2312 left = float(mRawPointerAxes.y.maxValue - rawBottom) * mYScale; in cookPointerData()
2313 right = float(mRawPointerAxes.y.maxValue - rawTop) * mYScale; in cookPointerData()
2326 bottom = float(rawBottom - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; in cookPointerData()
2327 top = float(rawTop - mRawPointerAxes.y.minValue) * mYScale + mYTranslate; in cookPointerData()
3731 const float yScaled = float(y - mRawPointerAxes.y.minValue) * mYScale; in rotateAndScale()
3734 const float yScaledMax = float(mRawPointerAxes.y.maxValue - y) * mYScale; in rotateAndScale()
3765 const float yScaled = (y - mRawPointerAxes.y.minValue) * mYScale; in isPointInsideSurface()