• Home
  • Raw
  • Download

Lines Matching refs:valL

471 			int32 valL;  in bim_UInt16ByteImage_warp()  local
510 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 ); in bim_UInt16ByteImage_warp()
514 valL = f1xL * ( *( ulPtrL + khL ) >> 8 ) + f2xL * ( *( ulPtrL + khL + 1 ) & 0x0FF ); in bim_UInt16ByteImage_warp()
516 dstPixelL = valL >> bbpLby2L; in bim_UInt16ByteImage_warp()
538 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 ); in bim_UInt16ByteImage_warp()
542 valL = f1xL * ( *( llPtrL + khL ) >> 8 ) + f2xL * ( *( llPtrL + khL + 1 ) & 0x0FF ); in bim_UInt16ByteImage_warp()
545 dstPixelL = valL >> bbpLby2L; in bim_UInt16ByteImage_warp()
559 valL = f1yL * ( *ptr1L & 0x0FF ) + f2yL * ( *ptr2L & 0x0FF ); in bim_UInt16ByteImage_warp()
560 dstPixelL = valL >> bbpLby2L; in bim_UInt16ByteImage_warp()
565 valL = f1yL * ( *( ptr1L + halfSrcWidthL - 1 ) >> 8 ) + in bim_UInt16ByteImage_warp()
567 dstPixelL = valL >> bbpLby2L; in bim_UInt16ByteImage_warp()
601 valL = v1L * f1yL + v2L * f2yL + halfL; in bim_UInt16ByteImage_warp()
602 dstPixelL = valL >> bbpL; in bim_UInt16ByteImage_warp()
767 int32 valL; in bim_UInt16ByteImage_warp8() local
800 valL = *( ulPtrL + kL ) * f1xL + *( ulPtrL + kL + 1 ) * f2xL; in bim_UInt16ByteImage_warp8()
801 *dstPtrL++ = valL >> bbpLby2L; in bim_UInt16ByteImage_warp8()
820 valL = *( llPtrL + kL ) * f1xL + *( llPtrL + kL + 1 ) * f2xL; in bim_UInt16ByteImage_warp8()
821 *dstPtrL++ = valL >> bbpLby2L; in bim_UInt16ByteImage_warp8()
836 valL = *ptr1L * f1yL + *ptr2L * f2yL ; in bim_UInt16ByteImage_warp8()
837 *dstPtrL++ = valL >> bbpLby2L; in bim_UInt16ByteImage_warp8()
843 valL = *( ptr1L + srcWidthL - 1 ) * f1yL + *( ptr2L + srcWidthL - 1 ) * f2yL; in bim_UInt16ByteImage_warp8()
844 *dstPtrL++ = valL >> bbpLby2L; in bim_UInt16ByteImage_warp8()
861 valL = v1L * f1yL + v2L * f2yL + halfL; in bim_UInt16ByteImage_warp8()
862 *dstPtrL++ = valL >> bbpL; in bim_UInt16ByteImage_warp8()