Lines Matching refs:sectionL
72 struct bts_Int16Rect sectionL = *sectionPtrA; in bim_createHistoOfSection() local
79 sectionL.x1E = bbs_max( 0, sectionL.x1E ); in bim_createHistoOfSection()
80 sectionL.x1E = bbs_min( imgWidthL, sectionL.x1E ); in bim_createHistoOfSection()
81 sectionL.x2E = bbs_max( 0, sectionL.x2E ); in bim_createHistoOfSection()
82 sectionL.x2E = bbs_min( imgWidthL, sectionL.x2E ); in bim_createHistoOfSection()
83 sectionL.y1E = bbs_max( 0, sectionL.y1E ); in bim_createHistoOfSection()
84 sectionL.y1E = bbs_min( imgHeightL, sectionL.y1E ); in bim_createHistoOfSection()
85 sectionL.y2E = bbs_max( 0, sectionL.y2E ); in bim_createHistoOfSection()
86 sectionL.y2E = bbs_min( imgHeightL, sectionL.y2E ); in bim_createHistoOfSection()
88 sectWidthL = sectionL.x2E - sectionL.x1E; in bim_createHistoOfSection()
89 sectHeightL = sectionL.y2E - sectionL.y1E; in bim_createHistoOfSection()
99 srcPtrL = imagePtrA->arrE.arrPtrE + sectionL.y1E * imgWidthL + sectionL.x1E; in bim_createHistoOfSection()