Lines Matching refs:ptr2L
551 const uint16* ptr2L; in bim_UInt16ByteImage_warp() local
555 ptr2L = ptr1L + halfSrcWidthL; in bim_UInt16ByteImage_warp()
559 valL = f1yL * ( *ptr1L & 0x0FF ) + f2yL * ( *ptr2L & 0x0FF ); in bim_UInt16ByteImage_warp()
566 f2yL * ( *( ptr2L + halfSrcWidthL - 1 ) >> 8 ); in bim_UInt16ByteImage_warp()
584 v2L = f1xL * ( *( ptr2L + khL ) >> 8 ) + f2xL * ( *( ptr2L + khL ) & 0x0FF ); in bim_UInt16ByteImage_warp()
587 v2L = f1xL * ( *( ptr2L + khL ) & 0x0FF ) + f2xL * ( *( ptr2L + khL ) >> 8 ); in bim_UInt16ByteImage_warp()
594 v2L = f1xL * ( *( ptr2L + khL ) & 0x0FF ) + f2xL * ( *( ptr2L + khL + 1 ) >> 8 ); in bim_UInt16ByteImage_warp()
597 v2L = f1xL * ( *( ptr2L + khL ) >> 8 ) + f2xL * ( *( ptr2L + khL + 1 ) & 0x0FF ); in bim_UInt16ByteImage_warp()
827 const uint8* ptr2L; in bim_UInt16ByteImage_warp8() local
831 ptr2L = ptr1L + srcWidthL; in bim_UInt16ByteImage_warp8()
836 valL = *ptr1L * f1yL + *ptr2L * f2yL ; in bim_UInt16ByteImage_warp8()
843 valL = *( ptr1L + srcWidthL - 1 ) * f1yL + *( ptr2L + srcWidthL - 1 ) * f2yL; in bim_UInt16ByteImage_warp8()
858 v2L = *( ptr2L + kL ) * f1xL + *( ptr2L + kL + 1 ) * f2xL; in bim_UInt16ByteImage_warp8()