• Home
  • Raw
  • Download

Lines Matching refs:uint32

40 					   uint32 srcWidthA,  in bim_downscaleBy2()
41 uint32 effWidthA, in bim_downscaleBy2()
42 uint32 effHeightA ) in bim_downscaleBy2()
44 uint32 wsL = srcWidthA; in bim_downscaleBy2()
45 uint32 w0L = effWidthA; in bim_downscaleBy2()
46 uint32 h0L = effHeightA; in bim_downscaleBy2()
47 uint32 w1L = w0L >> 1; in bim_downscaleBy2()
48 uint32 h1L = h0L >> 1; in bim_downscaleBy2()
53 uint32 iL, jL; in bim_downscaleBy2()
58 *dstL = ( ( uint32 )srcL[ 0 ] + srcL[ 1 ] + srcL[ wsL ] + srcL[ wsL + 1 ] + 2 ) >> 2; in bim_downscaleBy2()
71 uint32 srcImageWidthA, in bim_filterWarpInterpolation()
72 uint32 srcImageHeightA, in bim_filterWarpInterpolation()
75 uint32 dstWidthA, in bim_filterWarpInterpolation()
76 uint32 dstHeightA, in bim_filterWarpInterpolation()
78 uint32 scaleThresholdA ) in bim_filterWarpInterpolation()
82 uint32 w0L = srcImageWidthA; in bim_filterWarpInterpolation()
83 uint32 h0L = srcImageHeightA; in bim_filterWarpInterpolation()
88 uint32 w1L = w0L; in bim_filterWarpInterpolation()
89 uint32 h1L = h0L; in bim_filterWarpInterpolation()
92 uint32 scaleThrL = scaleThresholdA; in bim_filterWarpInterpolation()
103 uint32 iL; in bim_filterWarpInterpolation()
114 uint32 shlL = 16 - invAltL.matE.bbpE; in bim_filterWarpInterpolation()
122 uint32 shrL = invAltL.matE.bbpE - 16; in bim_filterWarpInterpolation()
131 uint32 shlL = 16 - invAltL.vecE.bbpE; in bim_filterWarpInterpolation()
137 uint32 shrL = invAltL.vecE.bbpE - 16; in bim_filterWarpInterpolation()
149 uint32 axxL = ( mxxL >= 0 ) ? mxxL : -mxxL; in bim_filterWarpInterpolation()
150 uint32 axyL = ( mxyL >= 0 ) ? mxyL : -mxyL; in bim_filterWarpInterpolation()
151 uint32 ayxL = ( myxL >= 0 ) ? myxL : -myxL; in bim_filterWarpInterpolation()
152 uint32 ayyL = ( myyL >= 0 ) ? myyL : -myyL; in bim_filterWarpInterpolation()
154 uint32 a1L = ( axxL > ayxL ) ? axxL : ayxL; in bim_filterWarpInterpolation()
155 uint32 a2L = ( axyL > ayyL ) ? axyL : ayyL; in bim_filterWarpInterpolation()
157 uint32 invScaleL = ( a1L < a2L ) ? a1L : a2L; in bim_filterWarpInterpolation()
158 uint32 scaleExpL = 0; in bim_filterWarpInterpolation()
173 uint32 wEffL, hEffL; in bim_filterWarpInterpolation()
228 uint32 iL; in bim_filterWarpInterpolation()
260 uint32 iL; in bim_filterWarpInterpolation()
261 uint32 srcSizeL = srcImageWidthA * srcImageHeightA; in bim_filterWarpInterpolation()
305 uint32 xf2L = xL & 0x0FFFF; in bim_filterWarpInterpolation()
306 uint32 yf2L = yL & 0x0FFFF; in bim_filterWarpInterpolation()
307 uint32 xf1L = 0x10000 - xf2L; in bim_filterWarpInterpolation()
308 uint32 yf1L = 0x10000 - yf2L; in bim_filterWarpInterpolation()
314 uint32 idxL = y0L * w1L + x0L; in bim_filterWarpInterpolation()
315uint32 v1L = ( ( uint32 )srcL[ idxL ] * xf1L + ( uint32 )srcL[ idxL + 1 ] * xf2L + 0x0… in bim_filterWarpInterpolation()
316uint32 v2L = ( ( uint32 )srcL[ idxL + w1L ] * xf1L + ( uint32 )srcL[ idxL + w1L + 1 ] * xf2L + 0x0… in bim_filterWarpInterpolation()
334 uint32 xf2L = xL & 0x0FFFF; in bim_filterWarpInterpolation()
335 uint32 yf2L = yL & 0x0FFFF; in bim_filterWarpInterpolation()
336 uint32 xf1L = 0x10000 - xf2L; in bim_filterWarpInterpolation()
337 uint32 yf1L = 0x10000 - yf2L; in bim_filterWarpInterpolation()
354 *dstL++ = ( ( uint32 )srcL[ x0L ] * xf1L + ( uint32 )srcL[ x0L + 1 ] * xf2L + 0x08000 ) >> 16; in bim_filterWarpInterpolation()
369 uint32 idxL = ( h1L - 1 ) * w1L + x0L; in bim_filterWarpInterpolation()
370 … *dstL++ = ( ( uint32 )srcL[ idxL ] * xf1L + ( uint32 )srcL[ idxL + 1 ] * xf2L + 0x08000 ) >> 16; in bim_filterWarpInterpolation()
377 uint32 idxL = y0L * w1L; in bim_filterWarpInterpolation()
378 … *dstL++ = ( ( uint32 )srcL[ idxL ] * yf1L + ( uint32 )srcL[ idxL + w1L ] * yf2L + 0x08000 ) >> 16; in bim_filterWarpInterpolation()
382 uint32 idxL = ( y0L + 1 ) * w1L - 1; in bim_filterWarpInterpolation()
383 … *dstL++ = ( ( uint32 )srcL[ idxL ] * yf1L + ( uint32 )srcL[ idxL + w1L ] * yf2L + 0x08000 ) >> 16; in bim_filterWarpInterpolation()
387 uint32 idxL = y0L * w1L + x0L; in bim_filterWarpInterpolation()
388uint32 v1L = ( ( uint32 )srcL[ idxL ] * xf1L + ( uint32 )srcL[ idxL + 1 ] * xf2L + 0x0… in bim_filterWarpInterpolation()
389uint32 v2L = ( ( uint32 )srcL[ idxL + w1L ] * xf1L + ( uint32 )srcL[ idxL + w1L + 1 ] * xf2L + 0x0… in bim_filterWarpInterpolation()
403 uint32 srcImageWidthA, in bim_filterWarpPixelReplication()
404 uint32 srcImageHeightA, in bim_filterWarpPixelReplication()
407 uint32 dstWidthA, in bim_filterWarpPixelReplication()
408 uint32 dstHeightA, in bim_filterWarpPixelReplication()
410 uint32 scaleThresholdA ) in bim_filterWarpPixelReplication()
414 uint32 w0L = srcImageWidthA; in bim_filterWarpPixelReplication()
415 uint32 h0L = srcImageHeightA; in bim_filterWarpPixelReplication()
420 uint32 w1L = w0L; in bim_filterWarpPixelReplication()
421 uint32 h1L = h0L; in bim_filterWarpPixelReplication()
424 uint32 scaleThrL = scaleThresholdA; in bim_filterWarpPixelReplication()
435 uint32 iL; in bim_filterWarpPixelReplication()
446 uint32 shlL = 16 - invAltL.matE.bbpE; in bim_filterWarpPixelReplication()
454 uint32 shrL = invAltL.matE.bbpE - 16; in bim_filterWarpPixelReplication()
463 uint32 shlL = 16 - invAltL.vecE.bbpE; in bim_filterWarpPixelReplication()
469 uint32 shrL = invAltL.vecE.bbpE - 16; in bim_filterWarpPixelReplication()
481 uint32 axxL = ( mxxL >= 0 ) ? mxxL : -mxxL; in bim_filterWarpPixelReplication()
482 uint32 axyL = ( mxyL >= 0 ) ? mxyL : -mxyL; in bim_filterWarpPixelReplication()
483 uint32 ayxL = ( myxL >= 0 ) ? myxL : -myxL; in bim_filterWarpPixelReplication()
484 uint32 ayyL = ( myyL >= 0 ) ? myyL : -myyL; in bim_filterWarpPixelReplication()
486 uint32 a1L = ( axxL > ayxL ) ? axxL : ayxL; in bim_filterWarpPixelReplication()
487 uint32 a2L = ( axyL > ayyL ) ? axyL : ayyL; in bim_filterWarpPixelReplication()
489 uint32 invScaleL = ( a1L < a2L ) ? a1L : a2L; in bim_filterWarpPixelReplication()
490 uint32 scaleExpL = 0; in bim_filterWarpPixelReplication()
505 uint32 wEffL, hEffL; in bim_filterWarpPixelReplication()
560 uint32 iL; in bim_filterWarpPixelReplication()
592 uint32 iL; in bim_filterWarpPixelReplication()
593 uint32 srcSizeL = srcImageWidthA * srcImageHeightA; in bim_filterWarpPixelReplication()
713 uint32 srcImageWidthA, in bim_filterWarp()
714 uint32 srcImageHeightA, in bim_filterWarp()
717 uint32 dstWidthA, in bim_filterWarp()
718 uint32 dstHeightA, in bim_filterWarp()
720 uint32 scaleThresholdA, in bim_filterWarp()