Searched refs:SkFixedFloorToInt (Results 1 – 4 of 4) sorted by relevance
36 return (unsigned)SkFixedFloorToInt(fx) <= max && in can_truncate_to_fixed_for_decal()37 (unsigned)SkFixedFloorToInt(fx + dx * (count - 1)) < max; in can_truncate_to_fixed_for_decal()
115 dst->fLeft = SkFixedFloorToInt(xr.fLeft); in XRect_roundOut()116 dst->fTop = SkFixedFloorToInt(xr.fTop); in XRect_roundOut()
401 top = SkFixedFloorToInt(fstart - SK_FixedHalf); in do_anti_hairline()405 top = SkFixedFloorToInt(fstart + (istop - istart - 1) * slope - SK_FixedHalf); in do_anti_hairline()477 left = SkFixedFloorToInt(fstart - SK_FixedHalf); in do_anti_hairline()481 left = SkFixedFloorToInt(fstart + (istop - istart - 1) * slope - SK_FixedHalf); in do_anti_hairline()
72 #define SkFixedFloorToInt(x) ((x) >> 16) macro