Home | History | Annotate | Download | only in src

Lines Matching refs:pExtents

211 			pExtents;
222 pExtents = &pReg->extents;
233 pExtents->x1 = pBox->x1;
234 pExtents->y1 = pBox->y1;
235 pExtents->x2 = pBoxEnd->x2;
236 pExtents->y2 = pBoxEnd->y2;
238 assert(pExtents->y1 < pExtents->y2);
241 if (pBox->x1 < pExtents->x1)
243 pExtents->x1 = pBox->x1;
245 if (pBox->x2 > pExtents->x2)
247 pExtents->x2 = pBox->x2;
251 assert(pExtents->x1 < pExtents->x2);