interval           89 3rdparty/openexr/Imath/ImathInterval.h     void			extendBy(const Interval<T>& interval);
interval           98 3rdparty/openexr/Imath/ImathInterval.h     bool			intersects(const Interval<T> &interval) const;
interval          172 3rdparty/openexr/Imath/ImathInterval.h Interval<T>::extendBy(const Interval<T>& interval)
interval          174 3rdparty/openexr/Imath/ImathInterval.h     if ( interval.min < min )
interval          175 3rdparty/openexr/Imath/ImathInterval.h     min = interval.min;
interval          177 3rdparty/openexr/Imath/ImathInterval.h     if ( interval.max > max )
interval          178 3rdparty/openexr/Imath/ImathInterval.h     max = interval.max;
interval          190 3rdparty/openexr/Imath/ImathInterval.h Interval<T>::intersects(const Interval<T>& interval) const
interval          192 3rdparty/openexr/Imath/ImathInterval.h     return interval.max >= min && interval.min <= max;
interval          228 modules/imgproc/src/floodfill.cpp     { return (unsigned)(a[0] - b[0] + lo) <= interval; }
interval          229 modules/imgproc/src/floodfill.cpp     unsigned lo, interval;
interval          237 modules/imgproc/src/floodfill.cpp             lo[k] = _lo[k], interval[k] = _lo[k] + _up[k];
interval          241 modules/imgproc/src/floodfill.cpp         return (unsigned)(a[0][0] - b[0][0] + lo[0]) <= interval[0] &&
interval          242 modules/imgproc/src/floodfill.cpp                (unsigned)(a[0][1] - b[0][1] + lo[1]) <= interval[1] &&
interval          243 modules/imgproc/src/floodfill.cpp                (unsigned)(a[0][2] - b[0][2] + lo[2]) <= interval[2];
interval          245 modules/imgproc/src/floodfill.cpp     unsigned lo[3], interval[3];