Lines Matching defs:min
171 long min;
177 min = data->records[0].y;
179 if (data->records[i].y < min) {
180 min = data->records[i].y;
184 return min;
264 long min, max, width;
274 min = max = data->records[0].y;
279 if (y < min)
280 min = y;
284 width = MAX((max - min) / hist->size, 1);
285 hist->records[0].x = min;
287 hist->records[i].x = min + i * width;
293 b = MIN((y - min) / width, hist->size - 1);