Lines Matching refs:srcL
154 const uint8* srcL = ( uint8* )imagePtrA; in bbf_Scanner_copyImage() local
162 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; in bbf_Scanner_copyImage()
163 srcL += 2; in bbf_Scanner_copyImage()
167 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++; in bbf_Scanner_copyImage()
173 const uint8* srcL = ( uint8* )imagePtrA + roiPtrA->y1E * imageWidthA + roiPtrA->x1E; in bbf_Scanner_copyImage() local
193 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; in bbf_Scanner_copyImage()
194 srcL += 2; in bbf_Scanner_copyImage()
198 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++; in bbf_Scanner_copyImage()
200 srcL += imageWidthA - ptrA->workWidthE; in bbf_Scanner_copyImage()
865 uint32* srcL = ( uint32* )ptrA->bitImageE.arrE.arrPtrE + rowL * sizeL; in bbf_Scanner_next() local
869 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( dstL[ iL ] >> 1 ) | ( srcL[ iL ] << shlL ); in bbf_Scanner_next()
873 bbs_memcpy32( dstL, srcL, sizeL ); in bbf_Scanner_next()
923 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + rowL * sizeL; in bbf_Scanner_goToXY() local
927 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( dstL[ iL ] >> 1 ) | ( srcL[ iL ] << shlL ); in bbf_Scanner_goToXY()
931 bbs_memcpy32( dstL, srcL, sizeL ); in bbf_Scanner_goToXY()
969 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + ( rowL - 1 ) * sizeL; in bbf_Scanner_goToXY() local
970 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = srcL[ iL ] >> offL; in bbf_Scanner_goToXY()