Searched refs:pointx (Results 1 – 1 of 1) sorted by relevance
71 static int is_eligible_point(int pointx, int pointy, int width, int height) { in is_eligible_point() argument72 return (pointx >= MATCH_SZ_BY2 && pointy >= MATCH_SZ_BY2 && in is_eligible_point()73 pointx + MATCH_SZ_BY2 < width && pointy + MATCH_SZ_BY2 < height); in is_eligible_point()