Home | History | Annotate | Download | only in camera

Lines Matching refs:row

478     unsigned int alignedRow, row;
541 row = width*bytesPerPixel;
548 // Step 1: Y plane: iterate through each row and copy
550 memcpy(bufferDst, bufferSrc, row);
552 bufferDst += row;
564 bufferDst_UV = (uint16_t *) (((uint8_t*)dst)+row*height);
681 row = width*bytesPerPixel;
682 alignedRow = ( row + ( stride -1 ) ) & ( ~ ( stride -1 ) );
684 //iterate through each row
685 for ( int i = 0 ; i < height ; i++, bufferSrc += alignedRow, bufferDst += row) {
686 memcpy(bufferDst, bufferSrc, row);