Lines Matching refs:y0L
304 int32 y0L = yL >> 16; in bim_filterWarpInterpolation() local
314 uint32 idxL = y0L * w1L + x0L; in bim_filterWarpInterpolation()
333 int32 y0L = yL >> 16; in bim_filterWarpInterpolation() local
342 if( y0L < 0 ) in bim_filterWarpInterpolation()
357 else if( y0L >= ( int32 )h1L - 1 ) in bim_filterWarpInterpolation()
377 uint32 idxL = y0L * w1L; in bim_filterWarpInterpolation()
382 uint32 idxL = ( y0L + 1 ) * w1L - 1; in bim_filterWarpInterpolation()
387 uint32 idxL = y0L * w1L + x0L; in bim_filterWarpInterpolation()
654 int32 y0L = ( ( yL >> 15 ) + 1 ) >> 1; in bim_filterWarpPixelReplication() local
658 if( y0L < 0 ) in bim_filterWarpPixelReplication()
673 else if( y0L >= ( int32 )h1L - 1 ) in bim_filterWarpPixelReplication()
692 *dstL++ = srcL[ y0L * w1L ]; in bim_filterWarpPixelReplication()
696 *dstL++ = srcL[ ( y0L + 1 ) * w1L - 1 ]; in bim_filterWarpPixelReplication()
700 *dstL++ = srcL[ y0L * w1L + x0L ]; in bim_filterWarpPixelReplication()