Home
last modified time | relevance | path

Searched refs:SNAKE_LIMIT (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/diff/src/
H A Danalyze.c54 #define SNAKE_LIMIT 20 /* Snakes bigger than this are considered `big'. */ macro
132 if (x - oldx > SNAKE_LIMIT) in diag()
159 if (oldx - x > SNAKE_LIMIT) in diag()
195 && xoff + SNAKE_LIMIT <= x && x < xlim in diag()
196 && yoff + SNAKE_LIMIT <= y && y < ylim) in diag()
203 if (k == SNAKE_LIMIT) in diag()
230 && xoff < x && x <= xlim - SNAKE_LIMIT in diag()
231 && yoff < y && y <= ylim - SNAKE_LIMIT) in diag()
238 if (k == SNAKE_LIMIT - 1) in diag()
/freebsd/contrib/diff/
H A DChangeLog2336 (SNAKE_LIMIT): New macro; merely documents already-used number 20.