Lines Matching refs:ptr1L
550 const uint16* ptr1L; in bim_UInt16ByteImage_warp() local
553 ptr1L = ulPtrL + lL * halfSrcWidthL; in bim_UInt16ByteImage_warp()
555 ptr2L = ptr1L + halfSrcWidthL; in bim_UInt16ByteImage_warp()
559 valL = f1yL * ( *ptr1L & 0x0FF ) + f2yL * ( *ptr2L & 0x0FF ); in bim_UInt16ByteImage_warp()
565 valL = f1yL * ( *( ptr1L + halfSrcWidthL - 1 ) >> 8 ) + in bim_UInt16ByteImage_warp()
583 v1L = f1xL * ( *( ptr1L + khL ) >> 8 ) + f2xL * ( *( ptr1L + khL ) & 0x0FF ); in bim_UInt16ByteImage_warp()
586 v1L = f1xL * ( *( ptr1L + khL ) & 0x0FF ) + f2xL * ( *( ptr1L + khL ) >> 8 ); in bim_UInt16ByteImage_warp()
593 v1L = f1xL * ( *( ptr1L + khL ) & 0x0FF ) + f2xL * ( *( ptr1L + khL + 1 ) >> 8 ); in bim_UInt16ByteImage_warp()
596 v1L = f1xL * ( *( ptr1L + khL ) >> 8 ) + f2xL * ( *( ptr1L + khL + 1 ) & 0x0FF ); in bim_UInt16ByteImage_warp()
826 const uint8* ptr1L; in bim_UInt16ByteImage_warp8() local
829 ptr1L = ulPtrL + lL * srcWidthL; in bim_UInt16ByteImage_warp8()
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()
857 v1L = *( ptr1L + kL ) * f1xL + *( ptr1L + kL + 1 ) * f2xL; in bim_UInt16ByteImage_warp8()