| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/formulas/ |
| H A D | area_formulas.hpp | 32 typename CT, 72 CT b_k, b_k1(0), b_k2(0); in clenshaw_sum() 75 CT c_k = odd ? *--it : NT(0); in clenshaw_sum() 168 static inline void evaluate_coeffs_n(CT n, CT coeffs_n[]) in evaluate_coeffs_n() 173 coeffs_n[0] = CT(2)/CT(3); in evaluate_coeffs_n() 176 coeffs_n[0] = (CT(10)-CT(4)*n)/CT(15); in evaluate_coeffs_n() 177 coeffs_n[1] = -CT(1)/CT(5); in evaluate_coeffs_n() 178 coeffs_n[2] = CT(1)/CT(45); in evaluate_coeffs_n() 181 coeffs_n[0] = (n*(CT(8)*n-CT(28))+CT(70))/CT(105); in evaluate_coeffs_n() 182 coeffs_n[1] = (CT(16)*n-CT(7))/CT(35); in evaluate_coeffs_n() [all …]
|
| H A D | sjoberg_intersection.hpp | 36 template <typename CT> 42 static inline bool apply(CT const& lon1, CT const& lat1, CT const& lon_a2, CT const& lat_a2, in apply() 43 CT const& lon2, CT const& lat2, CT const& lon_b2, CT const& lat_b2, in apply() 44 CT & lon, CT & lat) in apply() 46 CT tan_lat = 0; in apply() 59 static inline bool apply_alt(CT const& lon1, CT const& lat1, CT const& lon_a2, CT const& lat_a2, in apply_alt() 60 CT const& lon2, CT const& lat2, CT const& lon_b2, CT const& lat_b2, in apply_alt() 61 CT & lon, CT & tan_lat) in apply_alt() 63 CT const cos_lon1 = cos(lon1); in apply_alt() 64 CT const sin_lon1 = sin(lon1); in apply_alt() [all …]
|
| H A D | differential_quantities.hpp | 29 typename CT, 38 static inline void apply(CT const& lon1, CT const& lat1, in apply() 39 CT const& lon2, CT const& lat2, in apply() 40 CT const& azimuth, CT const& reverse_azimuth, in apply() 41 CT const& b, CT const& f, in apply() 42 CT & reduced_length, CT & geodesic_scale) in apply() 44 CT const dlon = lon2 - lon1; in apply() 45 CT const sin_lat1 = sin(lat1); in apply() 46 CT const cos_lat1 = cos(lat1); in apply() 47 CT const sin_lat2 = sin(lat2); in apply() [all …]
|
| H A D | vertex_longitude.hpp | 33 template <typename CT> 40 static inline CT apply(T const& lat1, //segment point 1 in apply() 47 CT const A = sin(lat1) * cos(lat2) * cos(lat3) * sin_l12; in apply() 48 CT const B = sin(lat1) * cos(lat2) * cos(lat3) * cos_l12 in apply() 50 CT lon = atan2(B, A); in apply() 51 return lon + math::pi<CT>(); in apply() 55 template <typename CT> 69 static inline CT apply(T const& lat1, //segment point 1 in apply() 79 CT const c0 = 0; in apply() 80 CT const c2 = 2; in apply() [all …]
|
| H A D | thomas_inverse.hpp | 41 typename CT, 56 typedef result_inverse<CT> result_type; 74 CT const c0 = 0; in apply() 75 CT const c1 = 1; in apply() 76 CT const c2 = 2; in apply() 77 CT const c4 = 4; in apply() 79 CT const pi_half = math::pi<CT>() / c2; in apply() 80 CT const f = formula::flattening<CT>(spheroid); in apply() 81 CT const one_minus_f = c1 - f; in apply() 88 CT const theta1 = math::equals(lat1, pi_half) ? lat1 : in apply() [all …]
|
| H A D | vincenty_inverse.hpp | 51 typename CT, 66 typedef result_inverse<CT> result_type; 82 CT const c1 = 1; in apply() 83 CT const c2 = 2; in apply() 84 CT const c3 = 3; in apply() 85 CT const c4 = 4; in apply() 86 CT const c16 = 16; in apply() 87 CT const c_e_12 = CT(1e-12); in apply() 89 CT const pi = geometry::math::pi<CT>(); in apply() 90 CT const two_pi = c2 * pi; in apply() [all …]
|
| H A D | andoyer_inverse.hpp | 41 typename CT, 56 typedef result_inverse<CT> result_type; 74 CT const c0 = CT(0); in apply() 75 CT const c1 = CT(1); in apply() 76 CT const pi = math::pi<CT>(); in apply() 77 CT const f = formula::flattening<CT>(spheroid); in apply() 79 CT const dlon = lon2 - lon1; in apply() 80 CT const sin_dlon = sin(dlon); in apply() 81 CT const cos_dlon = cos(dlon); in apply() 82 CT const sin_lat1 = sin(lat1); in apply() [all …]
|
| H A D | vertex_latitude.hpp | 31 template <typename CT> 37 static inline CT apply(T1 const& lat1, in apply() 44 template <typename CT> 75 static inline CT apply(T1 const& lat1, in apply() 79 CT const f = formula::flattening<CT>(spheroid); in apply() 81 CT const one_minus_f = (CT(1) - f); in apply() 84 CT const bet1 = atan( one_minus_f * tan(lat1) ); in apply() 87 CT const betv = vertex_latitude_on_sphere<CT>::apply(bet1, alp1); in apply() 125 template <typename CT, typename CS_Tag> 135 template <typename CT> [all …]
|
| H A D | spherical.hpp | 122 template <typename CT, bool ReverseAzimuth, typename T1, typename T2> 123 static inline result_spherical<CT> spherical_azimuth(T1 const& lon1, in spherical_azimuth() 128 typedef result_spherical<CT> result_type; in spherical_azimuth() 133 CT dlon = lon2 - lon1; in spherical_azimuth() 142 CT const cos_dlon = cos(dlon); in spherical_azimuth() 143 CT const sin_dlon = sin(dlon); in spherical_azimuth() 144 CT const cos_lat1 = cos(lat1); in spherical_azimuth() 145 CT const cos_lat2 = cos(lat2); in spherical_azimuth() 146 CT const sin_lat1 = sin(lat1); in spherical_azimuth() 147 CT const sin_lat2 = sin(lat2); in spherical_azimuth() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/geographic/ |
| H A D | area.hpp | 76 >::type CT; typedef in boost::geometry::strategy::area::geographic 82 CT const m_a2; // squared equatorial radius 83 CT const m_e2; // squared eccentricity 84 CT const m_ep2; // squared second eccentricity 85 CT const m_ep; // second eccentricity 86 CT const m_c2; // squared authalic radius 91 , m_e2(formula::flattening<CT>(spheroid) in spheroid_constants() 92 * (CT(2.0) - CT(formula::flattening<CT>(spheroid)))) in spheroid_constants() 93 , m_ep2(m_e2 / (CT(1.0) - m_e2)) in spheroid_constants() 99 static inline CT authalic_radius(Spheroid const& sph, CT const& a2, CT const& e2) in authalic_radius() [all …]
|
| H A D | parameters.hpp | 29 typename CT, 39 CT, EnableDistance, 50 typename CT, 60 CT, EnableDistance, 71 typename CT, 81 CT, EnableDistance,
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/disjoint/ |
| H A D | segment_box.hpp | 54 template <typename CT> 55 static inline void swap(CT& lon1, in swap() 56 CT& lat1, in swap() 57 CT& lon2, in swap() 58 CT& lat2) in swap() 91 typedef typename coordinate_type<segment_point_type>::type CT; in apply() typedef 98 CT lon1 = geometry::get_as_radian<0>(p0_normalized); in apply() 99 CT lat1 = geometry::get_as_radian<1>(p0_normalized); in apply() 100 CT lon2 = geometry::get_as_radian<0>(p1_normalized); in apply() 101 CT lat2 = geometry::get_as_radian<1>(p1_normalized); in apply() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/spherical/ |
| H A D | area.hpp | 58 >::type CT; typedef in boost::geometry::strategy::area::spherical 63 CT m_sum; 73 inline CT area(SphereType sphere) const in area() 75 CT result; in area() 76 CT radius = geometry::get_radius<0>(sphere); in area() 84 result = CT(2) in area() 85 * geometry::math::pi<CT>() in area() 89 if(geometry::math::sign<CT>(m_sum) == 1) in area() 105 typedef CT return_type; 108 typedef geometry::srs::sphere<CT> sphere_type; [all …]
|
| H A D | disjoint_segment_box.hpp | 66 typedef typename coordinate_type<segment_point_type>::type CT; in apply() typedef 67 geometry::strategy::azimuth::spherical<CT> azimuth_strategy; in apply()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/detail/ |
| H A D | composite_member_pointer_type.hpp | 89 template<class CT, class CB> 92 typedef CT CB::* type; 100 typedef typename boost::remove_pointer<CPT>::type CT; typedef 106 typedef typename common_member_class_pointer_to_member<CT, CB>::type type;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/ |
| H A D | copy_cv.hpp | 25 …name boost::conditional<boost::is_const<U>::value, typename boost::add_const<T>::type, T>::type CT; typedef 29 …::conditional<boost::is_volatile<U>::value, typename boost::add_volatile<CT>::type, CT>::type type;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/tao_tuple/28626e99/include/tao/seq/ |
| H A D | zip.hpp | 21 using CT = typename std::common_type< TA, TB >::type; typedef 22 using type = integer_sequence< CT, OP< CT, As, Bs >::value... >;
|
| /OK3568_Linux_fs/u-boot/arch/mips/dts/ |
| H A D | comtrend,ct-5361.dts | 12 model = "Comtrend CT-5361"; 27 label = "CT-5361:green:power"; 32 label = "CT-5361:red:alarm";
|
| /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 D | collect_vectors.hpp | 67 template <typename T, typename Geometry, typename CT, typename CSTag> 70 T, Geometry, strategy::side::side_by_triangle<CT>, CSTag 163 template <typename T, typename Geometry, typename CT, typename CSTag> 166 T, Geometry, strategy::side::spherical_side_formula<CT>, CSTag 263 template <typename T, typename Geometry, typename CT> 267 strategy::side::spherical_side_formula<CT>, 273 strategy::side::spherical_side_formula<CT>, 280 strategy::side::spherical_side_formula<CT>,
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/ti/ |
| H A D | ti,tpd12s015.txt | 8 - gpios: CT CP HPD, LS OE and HPD gpios 20 gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>, /* 60, CT CP HPD */
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/ |
| H A D | meta.h | 88 template <typename CT, typename T> 90 : AndExpr<IsSame<typename RemoveConst<CT>::Type, typename RemoveConst<T>::Type>, 91 BoolType<IsConst<CT>::Value >= IsConst<T>::Value> >::Type {};
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/ddbridge/ |
| H A D | Kconfig | 24 - DuoFlex CT Octopus 26 - CineCTv6 and DuoFlex CT (STV0367-based)
|
| /OK3568_Linux_fs/u-boot/board/comtrend/ct5361/ |
| H A D | MAINTAINERS | 1 COMTREND CT-5361 BOARD
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/media/ |
| H A D | dvb-usb-ttusb2-cardlist.rst | 19 * - Technotrend TT-connect CT-3650
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | am57xx-beagle-x15-revc.dts | 13 gpios = <&gpio7 10 GPIO_ACTIVE_HIGH>, /* gpio7_10, CT CP HPD */
|