Lines Matching refs:y
228 for(uint32_t y = 0; y < height; y++) { 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()
357 for(int32_t y = 0; y < src_height; ++y) { in rotate270_argb8888() local
358 dst[dstIndex + (src_height - y - 1)] = src[srcIndex]; in rotate270_argb8888()
375 for(int32_t y = 0; y < height; ++y) { in rotate180_argb8888() local
376 int32_t dstIndex = (height - y - 1) * dest_stride; in rotate180_argb8888()
377 int32_t srcIndex = y * src_stride; in rotate180_argb8888()
397 for(int32_t y = 0; y < src_height; ++y) { in rotate90_argb8888() local
398 dst[dstIndex * dst_stride + y] = src[srcIndex]; in rotate90_argb8888()
417 for(int32_t y = 0; y < src_height; ++y) { 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()
434 for(int32_t y = 0; y < height; ++y) { 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()
453 for(int32_t y = 0; y < height; ++y) { 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()
481 for(int32_t y = 0; y < src_height; ++y) { in rotate270_rgb565() local
482 dst[dstIndex + (src_height - y - 1)] = src[srcIndex]; in rotate270_rgb565()
498 for(int32_t y = 0; y < height; ++y) { in rotate180_rgb565() local
499 int32_t dstIndex = (height - y - 1) * dest_stride; in rotate180_rgb565()
500 int32_t srcIndex = y * src_stride; in rotate180_rgb565()
521 for(int32_t y = 0; y < src_height; ++y) { in rotate90_rgb565() local
522 dst[dstIndex * dst_stride + y] = src[srcIndex]; in rotate90_rgb565()
544 for(int32_t y = 0; y < src_height; ++y) { in rotate90_l8() local
545 dst[dstIndex * dst_stride + y] = src[srcIndex]; in rotate90_l8()
558 for(int32_t y = 0; y < height; ++y) { in rotate180_l8() local
559 int32_t dstIndex = (height - y - 1) * dest_stride; in rotate180_l8()
560 int32_t srcIndex = y * src_stride; in rotate180_l8()
578 for(int32_t y = 0; y < src_height; ++y) { in rotate270_l8() local
579 dst[dstIndex + (src_height - y - 1)] = src[srcIndex]; in rotate270_l8()