Lines Matching refs:top
90 int left, int top, int right, int bottom) { in rgb565_to_yv12() argument
102 for (int j = top; j <= bottom; ++j) { in rgb565_to_yv12()
130 int left, int top, int right, int bottom) { in rgb888_to_yv12() argument
160 for (int j = top; j <= bottom; ++j) { in rgb888_to_yv12()
198 int left, int top, int right, int bottom) { in rgb888_to_yuv420p() argument
210 for (int j = top; j <= bottom; ++j) { in rgb888_to_yuv420p()
235 int left, int top, int right, int bottom) { in yv12_to_rgb565() argument
248 for (int j = top; j <= bottom; ++j) { in yv12_to_rgb565()
280 int left, int top, int right, int bottom) { in yv12_to_rgb888() argument
293 for (int j = top; j <= bottom; ++j) { in yv12_to_rgb888()
297 uint8_t *rgb_ptr = rgb_ptr0 + get_rgb_offset(j - top, right - left + 1, rgb_stride); in yv12_to_rgb888()
320 int left, int top, int right, int bottom) { in yuv420p_to_rgb888() argument
332 for (int j = top; j <= bottom; ++j) { in yuv420p_to_rgb888()
336 uint8_t *rgb_ptr = rgb_ptr0 + get_rgb_offset(j - top, right - left + 1, rgb_stride); in yuv420p_to_rgb888()
364 int width, int height, int top, int left, in copy_rgb_buffer_from_unlocked() argument
368 const char *src = raw_data + top*src_line_len + left*bpp; in copy_rgb_buffer_from_unlocked()