Home | History | Annotate | Download | only in b_ImageEm

Lines Matching full:sectionl

73 	struct bts_Int16Rect sectionL = *sectionPtrA;
82 sectionL.x1E = bbs_max( 0, sectionL.x1E );
83 sectionL.x1E = bbs_min( imgWidthL, sectionL.x1E );
84 sectionL.x2E = bbs_max( 0, sectionL.x2E );
85 sectionL.x2E = bbs_min( imgWidthL, sectionL.x2E );
86 sectionL.y1E = bbs_max( 0, sectionL.y1E );
87 sectionL.y1E = bbs_min( imgHeightL, sectionL.y1E );
88 sectionL.y2E = bbs_max( 0, sectionL.y2E );
89 sectionL.y2E = bbs_min( imgHeightL, sectionL.y2E );
91 sectWidthL = sectionL.x2E - sectionL.x1E;
92 sectHeightL = sectionL.y2E - sectionL.y1E;
102 srcPtrL = imagePtrA->arrE.arrPtrE + sectionL.y1E * imgWidthL + sectionL.x1E;