Lines Matching defs:incr
108 double incr = 0.0;
160 "usage: %s [-w] [-f format] [-s string] [-t string] [first [incr]] last\n",
176 incr = e_atof(argv[1]);
181 if (incr == 0.0)
186 if (incr == 0.0)
187 incr = (first < last) ? 1.0 : -1.0;
189 if (incr <= 0.0 && first < last)
192 if (incr >= 0.0 && first > last)
212 fmt = generate_format(first, incr, last, equalize, pad, fmt);
215 if (incr > 0) {
218 for (first += incr; first <= last; first += incr) {
228 for (first += incr; first >= last; first += incr) {
481 generate_format(double first, double incr, double last,
493 last = first - incr * floor((first - last) / incr);
495 last = first + incr * floor((last - first) / incr);
497 sprintf(buf, deffmt, incr);