Searched refs:diff_min (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/boost/geometry/strategies/cartesian/ |
D | point_in_box.hpp | 77 static inline bool apply(CalcT const& diff_min, CalcT const& min_value, CalcT const& max_value) in apply() 80 return diff_min > c0 in apply() 81 && (min_value + diff_min < max_value in apply() 89 static inline bool apply(CalcT const& diff_min, CalcT const& min_value, CalcT const& max_value) in apply() 91 return min_value + diff_min <= max_value in apply() 127 … calc_t const diff_min = math::longitude_distance_unsigned<units_t, calc_t>(min_value, value); in apply() local 129 return DiffCheck::template apply<calc_t>(diff_min, min_value, max_value); in apply()
|
D | box_in_box.hpp | 131 calc_t const diff_min = math::longitude_distance_unsigned<units_t>(bing_min, bed_min); in apply() local 134 return bing_min + diff_min + diff_ed <= bing_max in apply()
|
/third_party/boost/boost/geometry/algorithms/detail/sections/ |
D | section_functions.hpp | 89 calc_t const diff_min = math::longitude_distance_signed in apply() local 99 return diff_min < c0 && diff_min_min <= c0 && diff_min_min <= diff_min; in apply()
|
/third_party/boost/boost/geometry/strategies/spherical/ |
D | disjoint_box_box.hpp | 68 calc_t const diff_min = math::longitude_distance_unsigned<units_t>(b1_min, b2_min); in apply() local 69 calc_t const b2_min_transl = b1_min + diff_min; // always right of b1_min in apply()
|
/third_party/ffmpeg/libavcodec/ |
D | elbg.c | 95 int i, pick=0, diff, diff_min = INT_MAX; in get_closest_codebook() local 98 …tance_limited(elbg->codebook + i*elbg->dim, elbg->codebook + index*elbg->dim, elbg->dim, diff_min); in get_closest_codebook() 99 if (diff < diff_min) { in get_closest_codebook() 101 diff_min = diff; in get_closest_codebook()
|