Lines Matching refs:bufferSrc
479 unsigned char *bufferDst, *bufferSrc; in copy2Dto1D() local
491 bufferSrc = ( unsigned char * ) y_uv[0] + offset; in copy2Dto1D()
506 *bufferDstY = *bufferSrc; in copy2Dto1D()
507 bufferSrc++; in copy2Dto1D()
510 *bufferDstY = *bufferSrc; in copy2Dto1D()
511 bufferSrc++; in copy2Dto1D()
530 bufferSrc += ( stride - width); in copy2Dto1D()
539 bufferSrc = ( unsigned char * ) y_uv[0] + offset; in copy2Dto1D()
550 memcpy(bufferDst, bufferSrc, row); in copy2Dto1D()
551 bufferSrc += stride; in copy2Dto1D()
553 if ( ( bufferSrc > bufferSrcEnd ) || ( bufferDst > bufferDstEnd ) ) { in copy2Dto1D()
680 bufferSrc = ( unsigned char * ) y_uv[0]; in copy2Dto1D()
685 for ( int i = 0 ; i < height ; i++, bufferSrc += alignedRow, bufferDst += row) { in copy2Dto1D()
686 memcpy(bufferDst, bufferSrc, row); in copy2Dto1D()