Lines Matching refs:int32
74 int32 w0L = ptrA->origWidthE;
75 int32 h0L = ptrA->origHeightE;
77 int32 w1L = ( w0L - ptrA->xOffE ) >> 1;
78 int32 h1L = ( h0L - ptrA->yOffE ) >> 1;
83 int32 iL, jL;
84 int32 kL = 0;
95 int32 idxL = jL * 2 * w0L + iL * 2;
109 int32 w0L = ptrA->workWidthE;
110 int32 h0L = ptrA->workHeightE;
111 int32 w1L = w0L >> 1;
112 int32 h1L = h0L >> 1;
116 int32 iL, jL;
117 int32 kL = 0;
123 int32 idxL = jL * 2 * w0L + iL * 2;
283 int32 ybL = ptrA->workScanRegionE.y1E >> 5;
284 int32 yoL = ptrA->workScanRegionE.y1E & 0x1F;
285 int32 xbL = ptrA->workScanRegionE.x1E;
296 else if( ybL == ( int32 )ptrA->bitImageE.heightE - 1 )
319 int32 xMinL = ptrA->origScanRegionE.x1E >> ptrA->scaleExpE;
320 int32 yMinL = ptrA->origScanRegionE.y1E >> ptrA->scaleExpE;
321 int32 xMaxL = ptrA->origScanRegionE.x2E >> ptrA->scaleExpE;
322 int32 yMaxL = ptrA->origScanRegionE.y2E >> ptrA->scaleExpE;
325 ptrA->workScanRegionE.x2E = ( xMaxL > ( int32 )ptrA->currentWidthE ) ? ptrA->currentWidthE : xMaxL;
326 ptrA->workScanRegionE.y2E = ( yMaxL > ( int32 )ptrA->currentHeightE ) ? ptrA->currentHeightE : yMaxL;
444 int32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE;
445 int32 hL = ptrA->workScanRegionE.y2E - ptrA->workScanRegionE.y1E - ptrA->patchHeightE;
453 int32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE;
459 void bbf_LocalScanner_pos( const struct bbf_LocalScanner* ptrA, int32* xPtrA, int32* yPtrA )
467 void bbf_LocalScanner_idxPos( const struct bbf_LocalScanner* ptrA, uint32 scanIndexA, int32* xPtrA, int32* yPtrA )
470 int32 xL = ( scanIndexA % wL ) + ptrA->workScanRegionE.x1E;
471 int32 yL = ( scanIndexA / wL ) + ptrA->workScanRegionE.y1E;
678 if( ( ptrA->xE + 1 ) < ptrA->workScanRegionE.x2E - ( int32 )ptrA->patchWidthE )
684 if( ( ptrA->yE + 1 ) >= ptrA->workScanRegionE.y2E - ( int32 )ptrA->patchHeightE ) return FALSE;
722 void bbf_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA )
724 bbs_DEF_fNameL( "void bbf_LocalScanner_goToXY( struct bbs_Context* cpA, struct bbf_LocalScanner* ptrA, int32 xA, int32 yA )" )
725 if( xA < ptrA->workScanRegionE.x1E || xA >= ptrA->workScanRegionE.x2E - ( int32 )ptrA->patchWidthE )
732 if( yA < ptrA->workScanRegionE.y1E || yA >= ptrA->workScanRegionE.y2E - ( int32 )ptrA->patchHeightE )
785 int32 maxL = ( 1 << ptrA->scaleExpE );