Home
last modified time | relevance | path

Searched refs:half_period (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/util/
H A Dnormalize_spheroidal_coordinates.hpp38 static inline CoordinateType half_period() in half_period() function
75 static inline CoordinateType half_period() in half_period() function
111 math::mod(value + constants::half_period(), constants::period()) in normalize_up()
112 - constants::half_period(); in normalize_up()
118 math::mod(value - constants::half_period(), constants::period()) in normalize_down()
119 + constants::half_period(); in normalize_down()
126 if (math::equals(math::abs(longitude), constants::half_period())) in apply()
128 longitude = constants::half_period(); in apply()
130 else if (longitude > constants::half_period()) in apply()
133 if (math::equals(longitude, -constants::half_period())) in apply()
[all …]
/OK3568_Linux_fs/u-boot/drivers/i2c/
H A Dlpc32xx_i2c.c57 int half_period; in __i2c_set_bus_speed() local
64 half_period = (get_periph_clk_rate() / speed) / 2; in __i2c_set_bus_speed()
65 if (half_period > 0xFF) in __i2c_set_bus_speed()
68 half_period = (get_hclk_clk_rate() / speed) / 2; in __i2c_set_bus_speed()
69 if (half_period > 0x3FF) in __i2c_set_bus_speed()
73 writel(half_period, &base->clk_hi); in __i2c_set_bus_speed()
74 writel(half_period, &base->clk_lo); in __i2c_set_bus_speed()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/agnostic/
H A Dpoint_in_poly_winding.hpp51 return constants::half_period() / CalculationType(180); in apply()
156 calc_t const pi = constants::half_period(); in apply()
180 calc_t s1x_anti = s1x + constants::half_period(); in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/envelope/
H A Drange_of_boxes.hpp115 if (math::larger(lon_max - lon_min, constants::half_period())) in apply()
H A Dmultipoint.hpp168 if (math::larger(lon_max - lon_min, Constants::half_period())) in get_min_max_longitudes()
H A Dsegment.hpp124 return math::abs(lon1 - lon2) > constants::half_period(); // > pi in crosses_antimeridian()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/
H A Ddirection_code.hpp127 calc_t const pi = constants::half_period(); in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/equals/
H A Dcollect_vectors.hpp303 coord_type const pi_2 = constants::half_period() / 2; in polar_to_equatorial()