Lines Matching refs:xr
84 static inline void XRect_set(SkXRect* xr, const SkIRect& src) { in XRect_set() argument
85 xr->fLeft = SkIntToFixed(src.fLeft); in XRect_set()
86 xr->fTop = SkIntToFixed(src.fTop); in XRect_set()
87 xr->fRight = SkIntToFixed(src.fRight); in XRect_set()
88 xr->fBottom = SkIntToFixed(src.fBottom); in XRect_set()
95 static inline void XRect_set(SkXRect* xr, const SkRect& src) { in XRect_set() argument
96 xr->fLeft = SkScalarToFixed(src.fLeft); in XRect_set()
97 xr->fTop = SkScalarToFixed(src.fTop); in XRect_set()
98 xr->fRight = SkScalarToFixed(src.fRight); in XRect_set()
99 xr->fBottom = SkScalarToFixed(src.fBottom); in XRect_set()
104 static inline void XRect_round(const SkXRect& xr, SkIRect* dst) { in XRect_round() argument
105 dst->fLeft = SkFixedRoundToInt(xr.fLeft); in XRect_round()
106 dst->fTop = SkFixedRoundToInt(xr.fTop); in XRect_round()
107 dst->fRight = SkFixedRoundToInt(xr.fRight); in XRect_round()
108 dst->fBottom = SkFixedRoundToInt(xr.fBottom); in XRect_round()
114 static inline void XRect_roundOut(const SkXRect& xr, SkIRect* dst) { in XRect_roundOut() argument
115 dst->fLeft = SkFixedFloorToInt(xr.fLeft); in XRect_roundOut()
116 dst->fTop = SkFixedFloorToInt(xr.fTop); in XRect_roundOut()
117 dst->fRight = SkFixedCeilToInt(xr.fRight); in XRect_roundOut()
118 dst->fBottom = SkFixedCeilToInt(xr.fBottom); in XRect_roundOut()