Lines Matching full:top
93 int left, int top, int right, int bottom) { in rgb565_to_yv12() argument
105 for (int j = top; j <= bottom; ++j) { in rgb565_to_yv12()
133 int left, int top, int right, int bottom) { in rgb888_to_yv12() argument
163 for (int j = top; j <= bottom; ++j) { in rgb888_to_yv12()
201 int left, int top, int right, int bottom) { in rgb888_to_yuv420p() argument
213 for (int j = top; j <= bottom; ++j) { in rgb888_to_yuv420p()
238 int left, int top, int right, int bottom) { in yv12_to_rgb565() argument
251 for (int j = top; j <= bottom; ++j) { in yv12_to_rgb565()
283 int left, int top, int right, int bottom) { in yv12_to_rgb888() argument
296 for (int j = top; j <= bottom; ++j) { in yv12_to_rgb888()
300 uint8_t *rgb_ptr = rgb_ptr0 + get_rgb_offset(j - top, right - left + 1, rgb_stride); in yv12_to_rgb888()
323 int left, int top, int right, int bottom) { in yuv420p_to_rgb888() argument
335 for (int j = top; j <= bottom; ++j) { in yuv420p_to_rgb888()
339 uint8_t *rgb_ptr = rgb_ptr0 + get_rgb_offset(j - top, right - left + 1, rgb_stride); in yuv420p_to_rgb888()
367 int width, int height, int top, int left, in copy_rgb_buffer_from_unlocked() argument
371 const char *src = raw_data + top*src_line_len + left*bpp; in copy_rgb_buffer_from_unlocked()