Lines Matching refs:fBottom
14 return bounds.fTop >= clip.fBottom || bounds.fBottom <= clip.fTop; in quick_reject()
120 if (pts[2].fY > clip.fBottom) { in chop_quad_in_Y()
121 if (chopMonoQuadAtY(pts, clip.fBottom, &t)) { in chop_quad_in_Y()
124 clamp_le(tmp[1].fY, clip.fBottom); in chop_quad_in_Y()
125 tmp[2].fY = clip.fBottom; in chop_quad_in_Y()
133 if (pts[i].fY > clip.fBottom) { in chop_quad_in_Y()
134 pts[i].fY = clip.fBottom; in chop_quad_in_Y()
147 if (pts[2].fY <= clip.fTop || pts[0].fY >= clip.fBottom) { in clipMonoQuad()
312 if (pts[3].fY > clip.fBottom) { in chop_cubic_in_Y()
314 chop_mono_cubic_at_y(pts, clip.fBottom, tmp); in chop_cubic_in_Y()
315 tmp[3].fY = clip.fBottom; in chop_cubic_in_Y()
316 clamp_le(tmp[2].fY, clip.fBottom); in chop_cubic_in_Y()
337 if (pts[3].fY <= clip.fTop || pts[0].fY >= clip.fBottom) { in clipMonoCubic()
408 return r.fLeft < -limit || r.fTop < -limit || r.fRight > limit || r.fBottom > limit; in too_big_for_reliable_float_math()
417 if (bounds.fBottom > clip.fTop && bounds.fTop < clip.fBottom) { in clipCubic()