Lines Matching refs:match

120 	int color, corners, match;  in gdImageCropAuto()  local
158 match = 1; in gdImageCropAuto()
159 for (y = 0; match && y < height; y++) { in gdImageCropAuto()
160 for (x = 0; match && x < width; x++) { in gdImageCropAuto()
162 match = (color == c2); in gdImageCropAuto()
174 match = 1; in gdImageCropAuto()
175 for (y = height - 1; match && y >= 0; y--) { in gdImageCropAuto()
176 for (x = 0; match && x < width; x++) { in gdImageCropAuto()
177 match = (color == gdImageGetPixel(im, x,y)); in gdImageCropAuto()
187 match = 1; in gdImageCropAuto()
188 for (x = 0; match && x < width; x++) { in gdImageCropAuto()
189 for (y = 0; match && y < crop.y + crop.height - 1; y++) { in gdImageCropAuto()
190 match = (color == gdImageGetPixel(im, x,y)); in gdImageCropAuto()
195 match = 1; in gdImageCropAuto()
196 for (x = width - 1; match && x >= 0; x--) { in gdImageCropAuto()
197 for (y = 0; match && y < crop.y + crop.height - 1; y++) { in gdImageCropAuto()
198 match = (color == gdImageGetPixel(im, x,y)); in gdImageCropAuto()
233 int match; in gdImageCropThreshold() local
254 match = 1; in gdImageCropThreshold()
255 for (y = 0; match && y < height; y++) { in gdImageCropThreshold()
256 for (x = 0; match && x < width; x++) { in gdImageCropThreshold()
257 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold()
270 match = 1; in gdImageCropThreshold()
271 for (y = height - 1; match && y >= 0; y--) { in gdImageCropThreshold()
272 for (x = 0; match && x < width; x++) { in gdImageCropThreshold()
273 match = (gdColorMatch(im, color, gdImageGetPixel(im, x, y), threshold)) > 0; in gdImageCropThreshold()
283 match = 1; in gdImageCropThreshold()
284 for (x = 0; match && x < width; x++) { in gdImageCropThreshold()
285 for (y = 0; match && y < crop.y + crop.height - 1; y++) { in gdImageCropThreshold()
286 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold()
291 match = 1; in gdImageCropThreshold()
292 for (x = width - 1; match && x >= 0; x--) { in gdImageCropThreshold()
293 for (y = 0; match && y < crop.y + crop.height - 1; y++) { in gdImageCropThreshold()
294 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold()