Home | History | Annotate | Download | only in blackfin

Lines Matching refs:source

4  *  Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
151 // Now copy the top and bottom source lines into each line of the respective borders
194 // Now copy the top and bottom source lines into each line of the respective borders
232 // Now copy the top and bottom source lines into each line of the respective borders
262 * FUNCTION : Copies the source image into the destination image and
273 unsigned char *source, *dest;
275 source = src_ybc->y_buffer;
280 extend_memcpy(dest, source, src_ybc->y_width);
281 source += src_ybc->y_stride;
285 source = src_ybc->u_buffer;
290 extend_memcpy(dest, source, src_ybc->uv_width);
291 source += src_ybc->uv_stride;
295 source = src_ybc->v_buffer;
300 extend_memcpy(dest, source, src_ybc->uv_width);
301 source += src_ybc->uv_stride;
309 char *source, *dest;
315 source = src_ybc->y_buffer;
320 extend_memcpy(dest, source, width);
321 source += src_ybc->y_stride;
328 source = src_ybc->u_buffer;
333 extend_memcpy(dest, source, width);
334 source += src_ybc->uv_stride;
338 source = src_ybc->v_buffer;
343 extend_memcpy(dest, source, width);
344 source += src_ybc->uv_stride;