Lines Matching refs:match

84 	int color, match;  in gdImageCropAuto()  local
122 match = 1; in gdImageCropAuto()
123 for (y = 0; match && y < height; y++) { in gdImageCropAuto()
124 for (x = 0; match && x < width; x++) { in gdImageCropAuto()
126 match = (color == c2); in gdImageCropAuto()
131 if (match) { in gdImageCropAuto()
137 match = 1; in gdImageCropAuto()
138 for (y = height - 1; match && y >= 0; y--) { in gdImageCropAuto()
139 for (x = 0; match && x < width; x++) { in gdImageCropAuto()
140 match = (color == gdImageGetPixel(im, x,y)); in gdImageCropAuto()
145 match = 1; in gdImageCropAuto()
146 for (x = 0; match && x < width; x++) { in gdImageCropAuto()
147 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropAuto()
148 match = (color == gdImageGetPixel(im, x,y)); in gdImageCropAuto()
153 match = 1; in gdImageCropAuto()
154 for (x = width - 1; match && x >= 0; x--) { in gdImageCropAuto()
155 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropAuto()
156 match = (color == gdImageGetPixel(im, x,y)); in gdImageCropAuto()
192 int match; in gdImageCropThreshold() local
213 match = 1; in gdImageCropThreshold()
214 for (y = 0; match && y < height; y++) { in gdImageCropThreshold()
215 for (x = 0; match && x < width; x++) { in gdImageCropThreshold()
216 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold()
221 if (match) { in gdImageCropThreshold()
227 match = 1; in gdImageCropThreshold()
228 for (y = height - 1; match && y >= 0; y--) { in gdImageCropThreshold()
229 for (x = 0; match && x < width; x++) { in gdImageCropThreshold()
230 match = (gdColorMatch(im, color, gdImageGetPixel(im, x, y), threshold)) > 0; in gdImageCropThreshold()
235 match = 1; in gdImageCropThreshold()
236 for (x = 0; match && x < width; x++) { in gdImageCropThreshold()
237 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropThreshold()
238 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold()
243 match = 1; in gdImageCropThreshold()
244 for (x = width - 1; match && x >= 0; x--) { in gdImageCropThreshold()
245 for (y = 0; match && y < crop.y + crop.height; y++) { in gdImageCropThreshold()
246 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold()