Lines Matching refs:x

229         for(uint32_t x = 0; x < width; x++) {  in lv_draw_sw_i1_convert_to_vtiled()  local
230 uint32_t src_index = y * width + x; in lv_draw_sw_i1_convert_to_vtiled()
231 uint32_t dst_index = x * height + y; in lv_draw_sw_i1_convert_to_vtiled()
354 for(int32_t x = 0; x < src_width; ++x) { in rotate270_argb8888() local
355 int32_t dstIndex = x * dst_stride; in rotate270_argb8888()
356 int32_t srcIndex = x; in rotate270_argb8888()
378 for(int32_t x = 0; x < width; ++x) { in rotate180_argb8888() local
379 dst[dstIndex + width - x - 1] = src[srcIndex + x]; in rotate180_argb8888()
394 for(int32_t x = 0; x < src_width; ++x) { in rotate90_argb8888() local
395 int32_t dstIndex = (src_width - x - 1); in rotate90_argb8888()
396 int32_t srcIndex = x; in rotate90_argb8888()
416 for(int32_t x = 0; x < src_width; ++x) { in rotate90_rgb888() local
418 int32_t srcIndex = y * src_stride + x * 3; in rotate90_rgb888()
419 int32_t dstIndex = (src_width - x - 1) * dst_stride + y * 3; in rotate90_rgb888()
435 for(int32_t x = 0; x < width; ++x) { in rotate180_rgb888() local
436 int32_t srcIndex = y * src_stride + x * 3; in rotate180_rgb888()
437 int32_t dstIndex = (height - y - 1) * dest_stride + (width - x - 1) * 3; in rotate180_rgb888()
452 for(int32_t x = 0; x < width; ++x) { in rotate270_rgb888() local
454 int32_t srcIndex = y * src_stride + x * 3; in rotate270_rgb888()
455 int32_t dstIndex = x * dst_stride + (height - y - 1) * 3; in rotate270_rgb888()
478 for(int32_t x = 0; x < src_width; ++x) { in rotate270_rgb565() local
479 int32_t dstIndex = x * dst_stride; in rotate270_rgb565()
480 int32_t srcIndex = x; in rotate270_rgb565()
501 for(int32_t x = 0; x < width; ++x) { in rotate180_rgb565() local
502 dst[dstIndex + width - x - 1] = src[srcIndex + x]; in rotate180_rgb565()
518 for(int32_t x = 0; x < src_width; ++x) { in rotate90_rgb565() local
519 int32_t dstIndex = (src_width - x - 1); in rotate90_rgb565()
520 int32_t srcIndex = x; in rotate90_rgb565()
541 for(int32_t x = 0; x < src_width; ++x) { in rotate90_l8() local
542 int32_t dstIndex = (src_width - x - 1); in rotate90_l8()
543 int32_t srcIndex = x; in rotate90_l8()
561 for(int32_t x = 0; x < width; ++x) { in rotate180_l8() local
562 dst[dstIndex + width - x - 1] = src[srcIndex + x]; in rotate180_l8()
575 for(int32_t x = 0; x < src_width; ++x) { in rotate270_l8() local
576 int32_t dstIndex = x * dst_stride; in rotate270_l8()
577 int32_t srcIndex = x; in rotate270_l8()