Lines Matching refs:x0L

303 				int32 x0L = xL >> 16;  in bim_filterWarpInterpolation()  local
314 uint32 idxL = y0L * w1L + x0L; in bim_filterWarpInterpolation()
332 int32 x0L = xL >> 16; in bim_filterWarpInterpolation() local
344 if( x0L < 0 ) in bim_filterWarpInterpolation()
348 else if( x0L >= ( int32 )w1L - 1 ) in bim_filterWarpInterpolation()
354 *dstL++ = ( ( uint32 )srcL[ x0L ] * xf1L + ( uint32 )srcL[ x0L + 1 ] * xf2L + 0x08000 ) >> 16; in bim_filterWarpInterpolation()
359 if( x0L < 0 ) in bim_filterWarpInterpolation()
363 else if( x0L >= ( int32 )w1L - 1 ) in bim_filterWarpInterpolation()
369 uint32 idxL = ( h1L - 1 ) * w1L + x0L; in bim_filterWarpInterpolation()
375 if( x0L < 0 ) in bim_filterWarpInterpolation()
380 else if( x0L >= ( int32 )w1L - 1 ) in bim_filterWarpInterpolation()
387 uint32 idxL = y0L * w1L + x0L; in bim_filterWarpInterpolation()
653 int32 x0L = ( ( xL >> 15 ) + 1 ) >> 1; in bim_filterWarpPixelReplication() local
660 if( x0L < 0 ) in bim_filterWarpPixelReplication()
664 else if( x0L >= ( int32 )w1L - 1 ) in bim_filterWarpPixelReplication()
670 *dstL++ = srcL[ x0L ]; in bim_filterWarpPixelReplication()
675 if( x0L < 0 ) in bim_filterWarpPixelReplication()
679 else if( x0L >= ( int32 )w1L - 1 ) in bim_filterWarpPixelReplication()
685 *dstL++ = srcL[ ( h1L - 1 ) * w1L + x0L ]; in bim_filterWarpPixelReplication()
690 if( x0L < 0 ) in bim_filterWarpPixelReplication()
694 else if( x0L >= ( int32 )w1L - 1 ) in bim_filterWarpPixelReplication()
700 *dstL++ = srcL[ y0L * w1L + x0L ]; in bim_filterWarpPixelReplication()