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.
59 // Now copy the top and bottom source lines into each line of the respective borders
98 // Now copy the top and bottom source lines into each line of the respective borders
132 // Now copy the top and bottom source lines into each line of the respective borders
184 // Now copy the top and bottom source lines into each line of the respective borders
217 * FUNCTION : Copies the source image into the destination image and
227 unsigned char *source, *dest;
229 source = src_ybc->y_buffer;
234 vpx_memcpy(dest, source, src_ybc->y_width);
235 source += src_ybc->y_stride;
239 source = src_ybc->u_buffer;
244 vpx_memcpy(dest, source, src_ybc->uv_width);
245 source += src_ybc->uv_stride;
249 source = src_ybc->v_buffer;
254 vpx_memcpy(dest, source, src_ybc->uv_width);
255 source += src_ybc->uv_stride;
266 unsigned char *source, *dest;
269 source = src_ybc->y_buffer;
274 vpx_memcpy(dest, source, src_ybc->y_width);
275 source += src_ybc->y_stride;