• Home
  • Raw
  • Download

Lines Matching refs:srcImageSubSectionL

362 	struct bts_Int16Rect srcImageSubSectionL;  in bim_Flt16Image_copySection()  local
372 srcImageSubSectionL.x1E = bbs_max( 0, sectionL.x1E ); in bim_Flt16Image_copySection()
373 srcImageSubSectionL.y1E = bbs_max( 0, sectionL.y1E ); in bim_Flt16Image_copySection()
374 srcImageSubSectionL.x2E = bbs_min( ( int32 ) srcPtrA->widthE, sectionL.x2E ); in bim_Flt16Image_copySection()
375 srcImageSubSectionL.y2E = bbs_min( ( int32 ) srcPtrA->heightE, sectionL.y2E ); in bim_Flt16Image_copySection()
378 if( srcImageSubSectionL.x2E < srcImageSubSectionL.x1E ) in bim_Flt16Image_copySection()
380 srcImageSubSectionL.x1E = 0; in bim_Flt16Image_copySection()
381 srcImageSubSectionL.x2E = srcPtrA->widthE; in bim_Flt16Image_copySection()
384 if( srcImageSubSectionL.y2E < srcImageSubSectionL.y1E ) in bim_Flt16Image_copySection()
386 srcImageSubSectionL.y1E = 0; in bim_Flt16Image_copySection()
387 srcImageSubSectionL.y2E = srcPtrA->heightE; in bim_Flt16Image_copySection()
398 …for( yIndexL = sectionL.y1E; yIndexL < srcImageSubSectionL.y1E && yIndexL < sectionL.y2E; yIndexL+… in bim_Flt16Image_copySection()
404 …for( xIndexL = sectionL.x1E; xIndexL < srcImageSubSectionL.x1E && xIndexL < sectionL.x2E; xIndexL+… in bim_Flt16Image_copySection()
409 for( ; xIndexL < srcImageSubSectionL.x2E && xIndexL < sectionL.x2E; xIndexL++ ) in bim_Flt16Image_copySection()
421 for( ; yIndexL < srcImageSubSectionL.y2E && yIndexL < sectionL.y2E; yIndexL++ ) in bim_Flt16Image_copySection()
424 srcPixelPtrL = srcPtrA->arrE.arrPtrE + yIndexL * srcPtrA->widthE + srcImageSubSectionL.x1E; in bim_Flt16Image_copySection()
427 …for( xIndexL = sectionL.x1E; xIndexL < srcImageSubSectionL.x1E && xIndexL < sectionL.x2E; xIndexL+… in bim_Flt16Image_copySection()
432 for( ; xIndexL < srcImageSubSectionL.x2E && xIndexL < sectionL.x2E; xIndexL++ ) in bim_Flt16Image_copySection()
446 …srcPixelPtrL = srcPtrA->arrE.arrPtrE + ( srcImageSubSectionL.y2E - 1 ) * srcPtrA->widthE + srcImag… in bim_Flt16Image_copySection()
449 …for( xIndexL = sectionL.x1E; xIndexL < srcImageSubSectionL.x1E && xIndexL < sectionL.x2E; xIndexL+… in bim_Flt16Image_copySection()
454 for( ; xIndexL < srcImageSubSectionL.x2E && xIndexL < sectionL.x2E; xIndexL++ ) in bim_Flt16Image_copySection()