Searched refs:dstW (Results 1 – 8 of 8) sorted by relevance
/hardware/intel/img/hwcomposer/ips/anniedale/ |
D | PlaneCapabilities.cpp | 171 int dstW, dstH; in isScalingSupported() local 175 dstW = dest.right - dest.left; in isScalingSupported() 180 return ((srcW == dstW) && (srcH == dstH)) ? true : false; in isScalingSupported() 188 if (dstW <= 1 || dstH <= 1 || srcW <= 1 || srcH <= 1) { in isScalingSupported() 190 DLOGTRACE("invalid destination size: %dx%d, fall back to GLES", dstW, dstH); in isScalingSupported() 206 float scaleX = (float)srcW / dstW; in isScalingSupported()
|
D | AnnRGBPlane.cpp | 151 int dstX, dstY, dstW, dstH; in setDataBuffer() local 163 dstW = mPosition.w; in setDataBuffer() 166 checkPosition(dstX, dstY, dstW, dstH); in setDataBuffer() 231 …tx.pos = ((mode->vdisplay - dstY - dstH) & 0xfff) << 16 | ((mode->hdisplay - dstX - dstW) & 0xfff); in setDataBuffer() 239 ((dstH - 1) & 0xfff) << 16 | ((dstW - 1) & 0xfff); in setDataBuffer()
|
D | AnnCursorPlane.cpp | 100 int dstW = mPosition.w; in setDataBuffer() local
|
/hardware/samsung_slsi/exynos5/libcamera/ |
D | ExynosJpegEncoderForCamera.h | 127 … char **dstBuf, unsigned int dstW, unsigned int dstH); 129 … char **dstBuf, unsigned int dstW, unsigned int dstH);
|
D | ExynosJpegEncoderForCamera.cpp | 691 …srcBuf, unsigned int srcW, unsigned int srcH, char **dstBuf, unsigned int dstW, unsigned int dstH) in scaleDownYuv422() argument 698 if (dstW & 0x01 || dstH & 0x01) { in scaleDownYuv422() 702 step_x = srcW / dstW; in scaleDownYuv422() 712 for (unsigned int x = 0; x < dstW; x += 2) { in scaleDownYuv422() 725 …*srcBuf, unsigned int srcW, unsigned int srcH, char **dstBuf, unsigned int dstW, unsigned int dstH) in scaleDownYuv422_2p() argument 733 if (dstW % 2 != 0 || dstH % 2 != 0) { in scaleDownYuv422_2p() 737 step_x = srcW / dstW; in scaleDownYuv422_2p() 747 for (uint32_t x = 0; x < dstW; x++) { in scaleDownYuv422_2p() 761 for (uint32_t j = 0; j < dstW; j += 2) { in scaleDownYuv422_2p()
|
/hardware/samsung_slsi/exynos5/libcamera2/ |
D | ExynosJpegEncoderForCamera.h | 125 … char **dstBuf, unsigned int dstW, unsigned int dstH); 127 … char **dstBuf, unsigned int dstW, unsigned int dstH);
|
D | ExynosJpegEncoderForCamera.cpp | 677 …srcBuf, unsigned int srcW, unsigned int srcH, char **dstBuf, unsigned int dstW, unsigned int dstH) in scaleDownYuv422() argument 684 if (dstW & 0x01 || dstH & 0x01) { in scaleDownYuv422() 688 step_x = srcW / dstW; in scaleDownYuv422() 698 for (unsigned int x = 0; x < dstW; x += 2) { in scaleDownYuv422() 711 …*srcBuf, unsigned int srcW, unsigned int srcH, char **dstBuf, unsigned int dstW, unsigned int dstH) in scaleDownYuv422_2p() argument 719 if (dstW % 2 != 0 || dstH % 2 != 0) { in scaleDownYuv422_2p() 723 step_x = srcW / dstW; in scaleDownYuv422_2p() 733 for (uint32_t x = 0; x < dstW; x++) { in scaleDownYuv422_2p() 744 for (uint32_t j = 0; j < dstW; j += 2) { in scaleDownYuv422_2p()
|
/hardware/intel/img/hwcomposer/common/base/ |
D | HwcLayerList.cpp | 169 int dstW = dest.right - dest.left; in checkRgbOverlaySupported() local 171 if (srcW != dstW || srcH != dstH) { in checkRgbOverlaySupported() 232 int dstW = dest.right - dest.left; in checkCursorSupported() local 234 if (srcW != dstW || srcH != dstH) { in checkCursorSupported() 236 srcW, srcH, dstW, dstH); in checkCursorSupported()
|