Searched refs:bytes_per_pixel (Results 1 – 3 of 3) sorted by relevance
1402 int bytes_per_pixel = logo->bpp >> 3; in rockchip_logo_rotate() local1431 memcpy(dst_rotate + (j * padded_width * bytes_per_pixel) + in rockchip_logo_rotate()1432 (height - i - 1) * bytes_per_pixel, in rockchip_logo_rotate()1433 img_data + i * width * bytes_per_pixel + j * bytes_per_pixel, in rockchip_logo_rotate()1434 bytes_per_pixel); in rockchip_logo_rotate()1441 memcpy(dst_rotate + (height - i - 1) * width * bytes_per_pixel + in rockchip_logo_rotate()1442 (width - j - 1) * bytes_per_pixel, in rockchip_logo_rotate()1443 img_data + i * width * bytes_per_pixel + j * bytes_per_pixel, in rockchip_logo_rotate()1444 bytes_per_pixel); in rockchip_logo_rotate()1454 memcpy(dst_rotate + (width - j - 1) * padded_width * bytes_per_pixel + in rockchip_logo_rotate()[all …]
243 uint32_t bytes_per_pixel(uint32_t fmt);
1008 if (stride < width * bytes_per_pixel(pixel_fmt)) in ipu_init_channel_buffer()1009 stride = width * bytes_per_pixel(pixel_fmt); in ipu_init_channel_buffer()1182 uint32_t bytes_per_pixel(uint32_t fmt) in bytes_per_pixel() function