Lines Matching refs:w
87 void DisplayPlane::checkPosition(int& x, int& y, int& w, int& h) in checkPosition() argument
98 if ((x + w) > mode->hdisplay) in checkPosition()
99 w = mode->hdisplay - x; in checkPosition()
104 void DisplayPlane::setPosition(int x, int y, int w, int h) in setPosition() argument
106 ATRACE("Position = %d, %d - %dx%d", x, y, w, h); in setPosition()
109 mPosition.w != w || mPosition.h != h) { in setPosition()
113 mPosition.w = w; in setPosition()
118 void DisplayPlane::setSourceCrop(int x, int y, int w, int h) in setSourceCrop() argument
120 ATRACE("Source crop = %d, %d - %dx%d", x, y, w, h); in setSourceCrop()
123 mSrcCrop.w != w || mSrcCrop.h != h) { in setSourceCrop()
128 mSrcCrop.w = w & (~0x01); in setSourceCrop()
131 mSrcCrop.w = w; in setSourceCrop()
215 mapper->setCrop(mSrcCrop.x, mSrcCrop.y, mSrcCrop.w, mSrcCrop.h); in setDataBuffer()