Lines Matching refs:workScanRegionE
197 ptrA->workScanRegionE = bts_Int16Rect_create( 0, 0, ptrA->currentWidthE, ptrA->currentHeightE ); in bbf_LocalScanner_createBitImage()
283 int32 ybL = ptrA->workScanRegionE.y1E >> 5; in bbf_LocalScanner_initPatchBuffer()
284 int32 yoL = ptrA->workScanRegionE.y1E & 0x1F; in bbf_LocalScanner_initPatchBuffer()
285 int32 xbL = ptrA->workScanRegionE.x1E; in bbf_LocalScanner_initPatchBuffer()
286 uint32 wsrWidthL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E; in bbf_LocalScanner_initPatchBuffer()
323 ptrA->workScanRegionE.x1E = ( xMinL < 0 ) ? 0 : xMinL; in bbf_LocalScanner_setWorkScanRegion()
324 ptrA->workScanRegionE.y1E = ( yMinL < 0 ) ? 0 : yMinL; in bbf_LocalScanner_setWorkScanRegion()
325 ptrA->workScanRegionE.x2E = ( xMaxL > ( int32 )ptrA->currentWidthE ) ? ptrA->currentWidthE : xMaxL; in bbf_LocalScanner_setWorkScanRegion()
326 …ptrA->workScanRegionE.y2E = ( yMaxL > ( int32 )ptrA->currentHeightE ) ? ptrA->currentHeightE : yMa… in bbf_LocalScanner_setWorkScanRegion()
360 bts_Int16Rect_init( cpA, &ptrA->workScanRegionE ); in bbf_LocalScanner_init()
394 bts_Int16Rect_exit( cpA, &ptrA->workScanRegionE ); in bbf_LocalScanner_exit()
444 int32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE; in bbf_LocalScanner_positions()
445 int32 hL = ptrA->workScanRegionE.y2E - ptrA->workScanRegionE.y1E - ptrA->patchHeightE; in bbf_LocalScanner_positions()
453 int32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE; in bbf_LocalScanner_scanIndex()
454 return ( ptrA->yE - ptrA->workScanRegionE.y1E ) * wL + ( ptrA->xE - ptrA->workScanRegionE.x1E ); in bbf_LocalScanner_scanIndex()
469 uint32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE; in bbf_LocalScanner_idxPos()
470 int32 xL = ( scanIndexA % wL ) + ptrA->workScanRegionE.x1E; in bbf_LocalScanner_idxPos()
471 int32 yL = ( scanIndexA / wL ) + ptrA->workScanRegionE.y1E; in bbf_LocalScanner_idxPos()
631 ptrA->xE = ptrA->workScanRegionE.x1E; in bbf_LocalScanner_resetScan()
632 ptrA->yE = ptrA->workScanRegionE.y1E; in bbf_LocalScanner_resetScan()
678 if( ( ptrA->xE + 1 ) < ptrA->workScanRegionE.x2E - ( int32 )ptrA->patchWidthE ) in bbf_LocalScanner_next()
684 if( ( ptrA->yE + 1 ) >= ptrA->workScanRegionE.y2E - ( int32 )ptrA->patchHeightE ) return FALSE; in bbf_LocalScanner_next()
686 ptrA->xE = ptrA->workScanRegionE.x1E; in bbf_LocalScanner_next()
694 uint32 sizeL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E; in bbf_LocalScanner_next()
725 …if( xA < ptrA->workScanRegionE.x1E || xA >= ptrA->workScanRegionE.x2E - ( int32 )ptrA->patchWidthE… in bbf_LocalScanner_goToXY()
732 …if( yA < ptrA->workScanRegionE.y1E || yA >= ptrA->workScanRegionE.y2E - ( int32 )ptrA->patchHeight… in bbf_LocalScanner_goToXY()
743 uint32 sizeL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E; in bbf_LocalScanner_goToXY()
745 uint32 imgOffsL = ptrA->workScanRegionE.x1E; in bbf_LocalScanner_goToXY()
775 uint32 wL = ptrA->workScanRegionE.x2E - ptrA->workScanRegionE.x1E - ptrA->patchWidthE; in bbf_LocalScanner_goToIndex()
777 ( scanIndexA % wL ) + ptrA->workScanRegionE.x1E, in bbf_LocalScanner_goToIndex()
778 ( scanIndexA / wL ) + ptrA->workScanRegionE.y1E ); in bbf_LocalScanner_goToIndex()