Home | History | Annotate | Download | only in b_BitFeatureEm

Lines Matching refs:workScanRegionE

197 	ptrA->workScanRegionE = bts_Int16Rect_create( 0, 0, ptrA->currentWidthE, ptrA->currentHeightE );
283 int32 ybL = ptrA->workScanRegionE.y1E >> 5;
284 int32 yoL = ptrA->workScanRegionE.y1E & 0x1F;
285 int32 xbL = ptrA->workScanRegionE.x1E;
286 uint32 wsrWidthL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E;
323 ptrA->workScanRegionE.x1E = ( xMinL < 0 ) ? 0 : xMinL;
324 ptrA->workScanRegionE.y1E = ( yMinL < 0 ) ? 0 : yMinL;
325 ptrA->workScanRegionE.x2E = ( xMaxL > ( int32 )ptrA->currentWidthE ) ? ptrA->currentWidthE : xMaxL;
326 ptrA->workScanRegionE.y2E = ( yMaxL > ( int32 )ptrA->currentHeightE ) ? ptrA->currentHeightE : yMaxL;
360 bts_Int16Rect_init( cpA, &ptrA->workScanRegionE );
394 bts_Int16Rect_exit( cpA, &ptrA->workScanRegionE );
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;
454 return ( ptrA->yE - ptrA->workScanRegionE.y1E ) * wL + ( ptrA->xE - ptrA->workScanRegionE.x1E );
469 uint32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE;
470 int32 xL = ( scanIndexA % wL ) + ptrA->workScanRegionE.x1E;
471 int32 yL = ( scanIndexA / wL ) + ptrA->workScanRegionE.y1E;
631 ptrA->xE = ptrA->workScanRegionE.x1E;
632 ptrA->yE = 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;
686 ptrA->xE = ptrA->workScanRegionE.x1E;
694 uint32 sizeL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E;
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 )
743 uint32 sizeL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E;
745 uint32 imgOffsL = ptrA->workScanRegionE.x1E;
775 uint32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE;
777 ( scanIndexA % wL ) + ptrA->workScanRegionE.x1E,
778 ( scanIndexA / wL ) + ptrA->workScanRegionE.y1E );