Lines Matching refs:fRight
40 int32_t fRight; //!< larger x-axis bounds member
122 int32_t right() const { return fRight; } in right()
153 int32_t width() const { return Sk32_can_overflow_sub(fRight, fLeft); } in width()
175 int64_t width64() const { return (int64_t)fRight - (int64_t)fLeft; } in width64()
191 bool isEmpty64() const { return fRight <= fLeft || fBottom <= fTop; } in isEmpty64()
249 fRight = right; in set()
277 fRight = Sk32_sat_add(x, width); in setXYWH()
295 Sk32_sat_add(fRight, dx), Sk32_sat_add(fBottom, dy), in makeOffset()
313 Sk32_sat_sub(fRight, dx), Sk32_sat_sub(fBottom, dy), in makeInset()
331 Sk32_sat_add(fRight, dx), Sk32_sat_add(fBottom, dy), in makeOutset()
348 fRight = Sk32_sat_add(fRight, dx); in offset()
373 fRight = Sk64_pin_to_s32((int64_t)fRight + newX - fLeft); in offsetTo()
392 fRight = Sk32_sat_sub(fRight, dx); in inset()
427 fRight = Sk32_sat_add(fRight, dR); in adjust()
442 return x >= fLeft && x < fRight && y >= fTop && y < fBottom; in contains()
460 fRight >= right && fBottom >= bottom; in contains()
474 fRight >= r.fRight && fBottom >= r.fBottom; in contains()
503 SkASSERT(fLeft < fRight && fTop < fBottom); in containsNoEmptyCheck()
507 fRight >= right && fBottom >= bottom; in containsNoEmptyCheck()
519 return containsNoEmptyCheck(r.fLeft, r.fTop, r.fRight, r.fBottom); in containsNoEmptyCheck()
548 SkMin32(a.fRight, b.fRight), in intersectNoEmptyCheck()
638 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom); in join()
647 if (fLeft > fRight) { in sort()
648 swap(fLeft, fRight); in sort()
662 return MakeLTRB(SkMin32(fLeft, fRight), SkMin32(fTop, fBottom), in makeSorted()
663 SkMax32(fLeft, fRight), SkMax32(fTop, fBottom)); in makeSorted()
686 SkScalar fRight; //!< larger x-axis bounds member
789 SkIntToScalar(irect.fRight), in Make()
803 return !(fLeft < fRight && fTop < fBottom); in isEmpty()
812 bool isSorted() const { return fLeft <= fRight && fTop <= fBottom; } in isSorted()
823 accum *= fRight; in isFinite()
867 SkScalar right() const { return fRight; } in right()
881 SkScalar width() const { return fRight - fLeft; } in width()
897 return SkScalarHalf(fLeft) + SkScalarHalf(fRight); in centerX()
963 fRight = SkIntToScalar(src.fRight); in set()
979 fRight = right; in set()
1009 fRight = SkIntToScalar(right); in iset()
1022 fRight = SkIntToScalar(width); in isetWH()
1084 fRight = SkMaxScalar(p0.fX, p1.fX); in set()
1100 fRight = x + width; in setXYWH()
1113 fRight = width; in setWH()
1129 return MakeLTRB(fLeft + dx, fTop + dy, fRight + dx, fBottom + dy); in makeOffset()
1144 return MakeLTRB(fLeft + dx, fTop + dy, fRight - dx, fBottom - dy); in makeInset()
1159 return MakeLTRB(fLeft - dx, fTop - dy, fRight + dx, fBottom + dy); in makeOutset()
1175 fRight += dx; in offset()
1200 fRight += newX - fLeft; in offsetTo()
1219 fRight -= dx; in inset()
1298 return Intersects(fLeft, fTop, fRight, fBottom, left, top, right, bottom); in intersects()
1308 return Intersects(fLeft, fTop, fRight, fBottom, in intersects()
1309 r.fLeft, r.fTop, r.fRight, r.fBottom); in intersects()
1320 return Intersects(a.fLeft, a.fTop, a.fRight, a.fBottom, in Intersects()
1321 b.fLeft, b.fTop, b.fRight, b.fBottom); in Intersects()
1347 this->join(r.fLeft, r.fTop, r.fRight, r.fBottom); in join()
1362 if (fLeft >= fRight || fTop >= fBottom) { in joinNonEmptyArg()
1378 fRight = SkMaxScalar(fRight, r.right()); in joinPossiblyEmptyRect()
1390 return x >= fLeft && x < fRight && y >= fTop && y < fBottom; in contains()
1405 fRight >= r.fRight && fBottom >= r.fBottom; in contains()
1420 fRight >= SkIntToScalar(r.fRight) && fBottom >= SkIntToScalar(r.fBottom); in contains()
1432 SkScalarRoundToInt(fRight), SkScalarRoundToInt(fBottom)); in round()
1445 SkScalarCeilToInt(fRight), SkScalarCeilToInt(fBottom)); in roundOut()
1458 SkScalarCeilToScalar(fRight), in roundOut()
1472 SkScalarFloorToInt(fRight), SkScalarFloorToInt(fBottom)); in roundIn()
1506 if (fLeft > fRight) { in sort()
1507 swap(fLeft, fRight); in sort()
1522 return MakeLTRB(SkMinScalar(fLeft, fRight), SkMinScalar(fTop, fBottom), in makeSorted()
1523 SkMaxScalar(fLeft, fRight), SkMaxScalar(fTop, fBottom)); in makeSorted()
1560 (SkScalar)fRight >= r.fRight && (SkScalar)fBottom >= r.fBottom; in contains()