Lines Matching refs:bufferSrc
491 unsigned char *bufferDst, *bufferSrc; in copy2Dto1D() local
503 bufferSrc = ( unsigned char * ) y_uv[0] + offset; in copy2Dto1D()
518 *bufferDstY = *bufferSrc; in copy2Dto1D()
519 bufferSrc++; in copy2Dto1D()
522 *bufferDstY = *bufferSrc; in copy2Dto1D()
523 bufferSrc++; in copy2Dto1D()
542 bufferSrc += ( stride - width); in copy2Dto1D()
551 bufferSrc = ( unsigned char * ) y_uv[0] + offset; in copy2Dto1D()
562 memcpy(bufferDst, bufferSrc, row); in copy2Dto1D()
563 bufferSrc += stride; in copy2Dto1D()
565 if ( ( bufferSrc > bufferSrcEnd ) || ( bufferDst > bufferDstEnd ) ) { in copy2Dto1D()
692 bufferSrc = ( unsigned char * ) y_uv[0]; in copy2Dto1D()
697 for ( int i = 0 ; i < height ; i++, bufferSrc += alignedRow, bufferDst += row) { in copy2Dto1D()
698 memcpy(bufferDst, bufferSrc, row); in copy2Dto1D()