Lines Matching refs:width
104 DISPLAY_TEST_CHK_RETURN((x < 0 || x >= handle.width), 0, in GetPixelValue()
105 … DISPLAY_TEST_LOGE("CheckPixel invalid parameter x:%{public}d width:%{public}d", x, handle.width)); in GetPixelValue()
109 int32_t position = y * handle.width + x; in GetPixelValue()
137 DISPLAY_TEST_CHK_RETURN((x < 0 || x >= handle.width), 0, in CheckPixel()
138 … DISPLAY_TEST_LOGE("CheckPixel invalid parameter x:%{public}d width:%{public}d", x, handle.width)); in CheckPixel()
142 int32_t position = y * handle.width + x; in CheckPixel()
151 DISPLAY_TEST_LOGD("x:%{public}d y:%{public}d width:%{public}d", x, y, handle.width); in CheckPixel()
178 DISPLAY_TEST_CHK_RETURN_NOT_VALUE((x < 0 || x >= handle.width), in SetPixel()
179 … DISPLAY_TEST_LOGE("CheckPixel invalid parameter x:%{public}d width:%{public}d", x, handle.width)); in SetPixel()
183 int32_t position = y * handle.width + x; in SetPixel()
195 for (int32_t x = 0; x < handle.width; x++) { in ClearColor()
226 const uint32_t CELL_WIDTH = handle.width / ROW_NUM; in SplitBuffer()