Lines Matching refs:src_stride

77                               int32_t src_stride,
79 …0_argb8888(const uint32_t * src, uint32_t * dst, int32_t width, int32_t height, int32_t src_stride,
82 int32_t src_stride,
87 int32_t src_stride,
89 …te180_rgb888(const uint8_t * src, uint8_t * dst, int32_t width, int32_t height, int32_t src_stride,
91 …te270_rgb888(const uint8_t * src, uint8_t * dst, int32_t width, int32_t height, int32_t src_stride,
96 int32_t src_stride,
98 …180_rgb565(const uint16_t * src, uint16_t * dst, int32_t width, int32_t height, int32_t src_stride,
101 int32_t src_stride,
108 int32_t src_stride,
110 …rotate180_l8(const uint8_t * src, uint8_t * dst, int32_t width, int32_t height, int32_t src_stride,
113 int32_t src_stride,
243 …sw_rotate(const void * src, void * dest, int32_t src_width, int32_t src_height, int32_t src_stride, in lv_draw_sw_rotate() argument
250 rotate90_l8(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
255 rotate90_rgb565(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
260 rotate90_rgb888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
266 rotate90_argb8888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
280 rotate180_l8(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
285 rotate180_rgb565(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
290 rotate180_rgb888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
296 rotate180_argb8888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
310 rotate270_l8(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
315 rotate270_rgb565(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
320 rotate270_rgb888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
326 rotate270_argb8888(src, dest, src_width, src_height, src_stride, dest_stride); in lv_draw_sw_rotate()
344 int32_t src_stride, in rotate270_argb8888() argument
347 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_ARGB8888(src, dst, src_width, src_height, src_stride, dst_s… in rotate270_argb8888()
351 src_stride /= sizeof(uint32_t); in rotate270_argb8888()
359 srcIndex += src_stride; in rotate270_argb8888()
364 …0_argb8888(const uint32_t * src, uint32_t * dst, int32_t width, int32_t height, int32_t src_stride, in rotate180_argb8888() argument
368 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE180_ARGB8888(src, dst, src_width, src_height, src_stride, dst_… in rotate180_argb8888()
372 src_stride /= sizeof(uint32_t); in rotate180_argb8888()
377 int32_t srcIndex = y * src_stride; in rotate180_argb8888()
385 int32_t src_stride, int32_t dst_stride) in rotate90_argb8888() argument
387 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_ARGB8888(src, dst, src_width, src_height, src_stride, dst_… in rotate90_argb8888()
391 src_stride /= sizeof(uint32_t); in rotate90_argb8888()
399 srcIndex += src_stride; in rotate90_argb8888()
409 int32_t src_stride, in rotate90_rgb888() argument
412 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_RGB888(src, dst, src_width, src_height, src_stride, dst_str… in rotate90_rgb888()
418 int32_t srcIndex = y * src_stride + x * 3; in rotate90_rgb888()
427 …te180_rgb888(const uint8_t * src, uint8_t * dst, int32_t width, int32_t height, int32_t src_stride, in rotate180_rgb888() argument
430 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE180_RGB888(src, dst, src_width, src_height, src_stride, dst_st… in rotate180_rgb888()
436 int32_t srcIndex = y * src_stride + x * 3; in rotate180_rgb888()
445 …te270_rgb888(const uint8_t * src, uint8_t * dst, int32_t width, int32_t height, int32_t src_stride, in rotate270_rgb888() argument
448 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_RGB888(src, dst, src_width, src_height, src_stride, dst_st… in rotate270_rgb888()
454 int32_t srcIndex = y * src_stride + x * 3; in rotate270_rgb888()
468 int32_t src_stride, in rotate270_rgb565() argument
471 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_RGB565(src, dst, src_width, src_height, src_stride, dst_str… in rotate270_rgb565()
475 src_stride /= sizeof(uint16_t); in rotate270_rgb565()
483 srcIndex += src_stride; in rotate270_rgb565()
488 …180_rgb565(const uint16_t * src, uint16_t * dst, int32_t width, int32_t height, int32_t src_stride, in rotate180_rgb565() argument
491 if(LV_RESULT_OK == LV_DRAW_SW_ROTATE180_RGB565(src, dst, width, height, src_stride)) { in rotate180_rgb565()
495 src_stride /= sizeof(uint16_t); in rotate180_rgb565()
500 int32_t srcIndex = y * src_stride; in rotate180_rgb565()
508 int32_t src_stride, in rotate90_rgb565() argument
511 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_RGB565(src, dst, src_width, src_height, src_stride, dst_st… in rotate90_rgb565()
515 src_stride /= sizeof(uint16_t); in rotate90_rgb565()
523 srcIndex += src_stride; in rotate90_rgb565()
534 int32_t src_stride, in rotate90_l8() argument
537 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE270_L8(src, dst, src_width, src_height, src_stride, dst_stride… in rotate90_l8()
546 srcIndex += src_stride; in rotate90_l8()
551 …rotate180_l8(const uint8_t * src, uint8_t * dst, int32_t width, int32_t height, int32_t src_stride, in rotate180_l8() argument
554 if(LV_RESULT_OK == LV_DRAW_SW_ROTATE180_L8(src, dst, width, height, src_stride)) { in rotate180_l8()
560 int32_t srcIndex = y * src_stride; in rotate180_l8()
568 int32_t src_stride, in rotate270_l8() argument
571 …if(LV_RESULT_OK == LV_DRAW_SW_ROTATE90_L8(src, dst, src_width, src_height, src_stride, dst_stride)… in rotate270_l8()
580 srcIndex += src_stride; in rotate270_l8()