| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/itemview_transitions/ |
| H A D | OsloListModel.qml | 58 Qt.point(0.530021277778,0.290828950269) 59 , Qt.point(0.530022955556,0.290828551201) 60 , Qt.point(0.530027338889,0.290827143373) 61 , Qt.point(0.530029541667,0.290826638991) 62 , Qt.point(0.530033122222,0.290825979412) 63 , Qt.point(0.530034466667,0.290825785418) 64 , Qt.point(0.530036788889,0.290825513826) 65 , Qt.point(0.530038238889,0.290825391887) 66 , Qt.point(0.530039372222,0.290825319831) 67 , Qt.point(0.530041136111,0.290825170178) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geometry/0.9.3/include/mapbox/geometry/ |
| H A D | point_arithmetic.hpp | 7 point<T> operator+(point<T> const& lhs, point<T> const& rhs) in operator +() 9 return point<T>(lhs.x + rhs.x, lhs.y + rhs.y); in operator +() 13 point<T> operator+(point<T> const& lhs, T const& rhs) in operator +() 15 return point<T>(lhs.x + rhs, lhs.y + rhs); in operator +() 19 point<T> operator-(point<T> const& lhs, point<T> const& rhs) in operator -() 21 return point<T>(lhs.x - rhs.x, lhs.y - rhs.y); in operator -() 25 point<T> operator-(point<T> const& lhs, T const& rhs) in operator -() 27 return point<T>(lhs.x - rhs, lhs.y - rhs); in operator -() 31 point<T> operator*(point<T> const& lhs, point<T> const& rhs) in operator *() 33 return point<T>(lhs.x * rhs.x, lhs.y * rhs.y); in operator *() [all …]
|
| H A D | envelope.hpp | 19 point<T> min(max_t, max_t); in envelope() 20 point<T> max(min_t, min_t); in envelope() 22 for_each_point(geometry, [&] (point<T> const& point) { in envelope() argument 23 if (min.x > point.x) min.x = point.x; in envelope() 24 if (min.y > point.y) min.y = point.y; in envelope() 25 if (max.x < point.x) max.x = point.x; in envelope() 26 if (max.y < point.y) max.y = point.y; in envelope()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/poly2tri/sweep/ |
| H A D | sweep.cpp | 54 Point& point = *tcx.GetPoint(i); in SweepPoints() local 55 Node* node = &PointEvent(tcx, point); in SweepPoints() 56 for (unsigned int i = 0; i < point.edge_list.size(); i++) { in SweepPoints() 57 EdgeEvent(tcx, point.edge_list[i], node); in SweepPoints() 66 Point* p = tcx.front()->head()->next->point; in FinalizationPolygon() 75 Node& Sweep::PointEvent(SweepContext& tcx, Point& point) in PointEvent() argument 77 Node& node = tcx.LocateNode(point); in PointEvent() 78 Node& new_node = NewFrontTriangle(tcx, point, node); in PointEvent() 82 if (point.x <= node.point->x + EPSILON) { in PointEvent() 108 void Sweep::EdgeEvent(SweepContext& tcx, Point& ep, Point& eq, Triangle* triangle, Point& point) in EdgeEvent() argument [all …]
|
| H A D | advancing_front.cpp | 71 Node* AdvancingFront::LocatePoint(const Point* point) in LocatePoint() argument 73 const double px = point->x; in LocatePoint() 75 const double nx = node->point->x; in LocatePoint() 78 if (point != node->point) { in LocatePoint() 80 if (point == node->prev->point) { in LocatePoint() 82 } else if (point == node->next->point) { in LocatePoint() 90 if (point == node->point) { in LocatePoint() 96 if (point == node->point) in LocatePoint()
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/qmlvideofx/shaders/ |
| H A D | pagecurl.fsh | 55 vec3 hitPoint(float hitAngle, float yc, vec3 point, mat3 rrotation) 58 point.y = hitPoint; 59 return rrotation * point; 71 float distanceToEdge(vec3 point) 73 float dx = abs(point.x > 0.5 ? 1.0 - point.x : point.x); 74 float dy = abs(point.y > 0.5 ? 1.0 - point.y : point.y); 75 if (point.x < 0.0) dx = -point.x; 76 if (point.x > 1.0) dx = point.x - 1.0; 77 if (point.y < 0.0) dy = -point.y; 78 if (point.y > 1.0) dy = point.y - 1.0; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/ |
| H A D | tst_map_item_details.qml | 343 var point = map.fromCoordinate(extMapPolygon.path[1]) 347 mouseClick(map, point.x - 5, point.y) 354 mouseClick(map, point.x - 5, point.y) 377 var point = map.fromCoordinate(extMapPolyline.path[1]) 397 //mouseClick(map, point.x - 5, point.y) 469 var point = map.fromCoordinate(extMapRectDateline.topLeft) 470 verify(point.x < map.width / 2.0) 471 point = map.fromCoordinate(extMapRectDateline.bottomRight) 472 verify(point.x > map.width / 2.0) 475 point = map.fromCoordinate(extMapRectDateline.bottomRight) [all …]
|
| H A D | tst_map_pinch.qml.QTBUG-47970 | 66 property point startPinchPoint1: Qt.point(0,0) 67 property point startPinchPoint2: Qt.point(0,0) 68 property point endPinchPoint1: Qt.point(0,0) 69 property point endPinchPoint2: Qt.point(0,0) 202 Qt.point(0,50), // point1From 203 Qt.point(50,50), // point1To 204 Qt.point(100,50), // point2From 205 Qt.point(50,50), // point2To 286 pinchGenerator.pinch(Qt.point(45,50), Qt.point(0,50), 287 Qt.point(55,50), Qt.point(100,50), [all …]
|
| H A D | tst_map_item.qml | 259 preMapQuickItem.anchorPoint = Qt.point(0,0) 284 var point = map.fromCoordinate(preMapRect.topLeft) 285 mouseClick(map, point.x + 5, point.y + 5) 294 point = map.fromCoordinate(preMapCircle.center) 295 mouseClick(map, point.x - 5, point.y - 5) 309 point = map.fromCoordinate(preMapQuickItem.coordinate) 310 mouseClick(map, point.x + 5, point.y + 5) 317 point = map.fromCoordinate(preMapPolygon.path[1]) 318 mouseClick(map, point.x - 5, point.y) 328 var point = map.fromCoordinate(preMapRect.topLeft) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/ |
| H A D | point.hpp | 14 struct point; 17 using point_ptr = point<T>*; 20 using const_point_ptr = point<T>* const; 32 struct point { struct 40 point() : ring(nullptr), x(0), y(0), prev(this), next(this) { in point() function 43 point(T x_, T y_) : ring(nullptr), x(x_), y(y_), next(this), prev(this) { in point() argument 46 point(ring_ptr<T> ring_, mapbox::geometry::point<T> const& pt) in point() argument 50 point(ring_ptr<T> ring_, mapbox::geometry::point<T> const& pt, point_ptr<T> before_this_point) in point() function 64 bool operator==(point<T> const& lhs, point<T> const& rhs) { in operator ==() 69 bool operator==(mapbox::geometry::point<T> const& lhs, point<T> const& rhs) { in operator ==() [all …]
|
| H A D | util.hpp | 46 bool slopes_equal(mapbox::geometry::point<T> const& pt1, in slopes_equal() 47 mapbox::geometry::point<T> const& pt2, in slopes_equal() 48 mapbox::geometry::point<T> const& pt3) { in slopes_equal() 53 bool slopes_equal(mapbox::geometry::wagyu::point<T> const& pt1, in slopes_equal() 54 mapbox::geometry::wagyu::point<T> const& pt2, in slopes_equal() 55 mapbox::geometry::point<T> const& pt3) { in slopes_equal() 60 bool slopes_equal(mapbox::geometry::wagyu::point<T> const& pt1, in slopes_equal() 61 mapbox::geometry::wagyu::point<T> const& pt2, in slopes_equal() 62 mapbox::geometry::wagyu::point<T> const& pt3) { in slopes_equal() 67 bool slopes_equal(mapbox::geometry::point<T> const& pt1, in slopes_equal() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/within/ |
| H A D | point_in_geometry.hpp | 63 int point_in_range(Point const& point, Range const& range, Strategy const& strategy) in point_in_range() argument 74 if ( ! strategy.apply(point, *previous, *it, state) ) in point_in_range() 84 inline int point_in_range(Point const& point, Range const& range) in point_in_range() argument 91 return point_in_range(point, range, strategy_type()); in point_in_range() 124 int apply(Point const& point, Segment const& segment, Strategy const& strategy) in apply() 135 strategy.apply(point, p0, p1, state); in apply() 142 if ( detail::equals::equals_point_point(point, p0) in apply() 143 || detail::equals::equals_point_point(point, p1) ) in apply() 155 int apply(Point const& point, Linestring const& linestring, Strategy const& strategy) in apply() 160 if ( detail::within::point_in_range(point, linestring, strategy) != 0 ) in apply() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/closest_feature/ |
| H A D | point_to_range.hpp | 46 static inline void apply(Point const& point, in apply() argument 63 dist_min = strategy.apply(point, *first, *first); in apply() 68 dist_min = strategy.apply(point, *prev, *it); in apply() 74 Distance dist = strategy.apply(point, *prev, *it); in apply() 97 static inline return_type apply(Point const& point, in apply() argument 104 apply(point, first, last, strategy, it_min1, it_min2, dist_min); in apply() 109 static inline return_type apply(Point const& point, in apply() argument 121 return apply(point, first, last, strategy, dist_min); in apply() 125 static inline return_type apply(Point const& point, in apply() argument 130 return apply(point, in apply() [all …]
|
| /OK3568_Linux_fs/app/lvgl_demo/hal/ |
| H A D | evdev.c | 282 data->point.x = map(evdev_root_x, EVDEV_HOR_MIN, EVDEV_HOR_MAX, in evdev_read() 284 data->point.y = map(evdev_root_y, EVDEV_VER_MIN, EVDEV_VER_MAX, in evdev_read() 287 data->point.x = map(evdev_root_x, EVDEV_HOR_MIN, EVDEV_HOR_MAX, in evdev_read() 289 data->point.y = map(evdev_root_y, EVDEV_VER_MIN, EVDEV_VER_MAX, in evdev_read() 293 data->point.x = evdev_root_x; in evdev_read() 294 data->point.y = evdev_root_y; in evdev_read() 305 tmp = data->point.x; in evdev_read() 306 data->point.x = data->point.y; in evdev_read() 307 data->point.y = drv->disp->driver->ver_res - tmp; in evdev_read() 310 tmp = data->point.x; in evdev_read() [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aorb/ |
| H A D | orb_algos.cpp | 72 void init_matchpoints(orb_matched_point_t* point, U32 row1, U32 col1, U32 row2, U32 col2, U32 score… in init_matchpoints() argument 73 if (point == NULL) { in init_matchpoints() 77 point->col1 = col1; in init_matchpoints() 78 point->row1 = row1; in init_matchpoints() 79 point->col2 = col2; in init_matchpoints() 80 point->row2 = row2; in init_matchpoints() 81 point->score = score; in init_matchpoints() 89 rk_aiq_orb_featue_point* point = keypoints->points + i; in get_roi_points_list() local 90 if (point->x < roi.left || in get_roi_points_list() 91 point->x > roi.right || in get_roi_points_list() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/cartesian/ |
| H A D | buffer_point_square.hpp | 52 inline void add_point(Point const& point, in add_point() argument 59 set<0>(p, get<0>(point) + x * distance); in add_point() 60 set<1>(p, get<1>(point) + y * distance); in add_point() 70 inline void add_points(Point const& point, in add_points() argument 74 add_point(point, distance, -1.0, -1.0, output_range); in add_points() 75 add_point(point, distance, -1.0, +1.0, output_range); in add_points() 76 add_point(point, distance, +1.0, +1.0, output_range); in add_points() 77 add_point(point, distance, +1.0, -1.0, output_range); in add_points() 93 inline void apply(Point const& point, in apply() argument 97 add_points(point, distance_strategy.apply(point, point, in apply()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/distance/ |
| H A D | point_to_geometry.hpp | 102 static inline return_type apply(Point const& point, Range const& range, in apply() argument 126 = point_to_point_range::apply(point, in apply() 140 strategy.apply(point, *it_pair.first, *it_pair.second); in apply() 159 static inline return_type apply(Point const& point, in apply() 163 if (geometry::within(point, ring)) in apply() 171 >::apply(point, ring, strategy); in apply() 200 static inline return_type apply(Point const& point, in apply() 207 if (geometry::within(point, *it)) in apply() 212 return per_ring::apply(point, *it, strategy); in apply() 219 static inline return_type apply(Point const& point, in apply() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/ |
| H A D | point.hpp | 108 class point class 124 point() = default; 127 inline point() 131 point() 136 ~point() 144 explicit inline point(CoordinateType const& v0) in point() function in boost::geometry::model::point 157 inline point(CoordinateType const& v0, CoordinateType const& v1) in point() function in boost::geometry::model::point 170 inline point(CoordinateType const& v0, CoordinateType const& v1, in point() function in boost::geometry::model::point 234 struct tag<model::point<CoordinateType, DimensionCount, CoordinateSystem> > 245 struct coordinate_type<model::point<CoordinateType, DimensionCount, CoordinateSystem> > [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/ |
| H A D | assign_values.hpp | 72 static inline void apply(Point& point) in apply() 74 geometry::assign_value(point, 0); in apply() 120 inline void assign_box_2d_corner(Box const& box, Point& point) in assign_box_2d_corner() argument 129 geometry::set<0>(point, boost::numeric_cast<coordinate_type>(get<Corner1, 0>(box))); in assign_box_2d_corner() 130 geometry::set<1>(point, boost::numeric_cast<coordinate_type>(get<Corner2, 1>(box))); in assign_box_2d_corner() 144 static inline void apply(Point const& point, Geometry& geometry) in apply() 149 >(geometry::get<Dimension>(point))); in apply() 154 >::apply(point, geometry); in apply() 186 static inline void apply(Geometry const& geometry, Point& point) in apply() 188 geometry::set<Dimension>( point, boost::numeric_cast in apply() [all …]
|
| H A D | point_on_border.hpp | 89 static inline bool apply(Point& point, Iterator begin, Iterator end) in apply() 99 geometry::detail::conversion::convert_point_to_point(*it, point); in apply() 117 >::apply(point, *prev, *it); in apply() 124 static inline bool apply(Point& point, Range const& range) in apply() 129 return apply(point, boost::begin(range), boost::end(range)); in apply() 138 static inline bool apply(Point& point, Polygon const& polygon) in apply() 143 >::apply(point, exterior_ring(polygon)); in apply() 152 static inline bool apply(Point& point, Box const& box) in apply() 163 >::apply(point, p1, p2); in apply() 167 detail::assign::assign_box_2d_corner<min_corner, min_corner>(box, point); in apply() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/polylabel/1.0.3/include/mapbox/ |
| H A D | polylabel.hpp | 19 T getSegDistSq(const geometry::point<T>& p, in getSegDistSq() 20 const geometry::point<T>& a, in getSegDistSq() 21 const geometry::point<T>& b) { in getSegDistSq() 49 auto pointToPolygonDist(const geometry::point<T>& point, const geometry::polygon<T>& polygon) { in pointToPolygonDist() argument 58 if ((a.y > point.y) != (b.y > point.y) && in pointToPolygonDist() 59 (point.x < (b.x - a.x) * (point.y - a.y) / (b.y - a.y) + a.x)) inside = !inside; in pointToPolygonDist() 61 minDistSq = std::min(minDistSq, getSegDistSq(point, a, b)); in pointToPolygonDist() 70 Cell(const geometry::point<T>& c_, T h_, const geometry::polygon<T>& polygon) in Cell() 77 geometry::point<T> c; // cell center 87 geometry::point<T> c { 0, 0 }; in getCentroidCell() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/common/ |
| H A D | mali_timeline.h | 165 …mali_timeline_point point; /**< Point on timeline we are waiting for to be relea… member 180 mali_timeline_point point; /**< Point on timeline for this tracker */ member 278 …LINE mali_bool mali_timeline_is_point_on(struct mali_timeline *timeline, mali_timeline_point point) in mali_timeline_is_point_on() argument 281 MALI_DEBUG_ASSERT(MALI_TIMELINE_NO_POINT != point); in mali_timeline_is_point_on() 283 return (point - timeline->point_oldest) < (timeline->point_next - timeline->point_oldest); in mali_timeline_is_point_on() 294 …ali_bool mali_timeline_is_point_released(struct mali_timeline *timeline, mali_timeline_point point) in mali_timeline_is_point_released() argument 300 MALI_DEBUG_ASSERT(MALI_TIMELINE_NO_POINT != point); in mali_timeline_is_point_released() 302 point_normalized = point - timeline->point_oldest; in mali_timeline_is_point_released() 314 …i_bool mali_timeline_is_tracker_released(struct mali_timeline *timeline, mali_timeline_point point) in mali_timeline_is_tracker_released() argument 319 MALI_DEBUG_ASSERT(MALI_TIMELINE_NO_POINT != point); in mali_timeline_is_tracker_released() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/poly2tri/common/ |
| H A D | shapes.cpp | 126 void Triangle::Legalize(Point& point) in Legalize() argument 130 points_[2] = &point; in Legalize() 212 Point* Triangle::PointCW(Point& point) in PointCW() argument 214 if (&point == points_[0]) { in PointCW() 216 } else if (&point == points_[1]) { in PointCW() 218 } else if (&point == points_[2]) { in PointCW() 225 Point* Triangle::PointCCW(Point& point) in PointCCW() argument 227 if (&point == points_[0]) { in PointCCW() 229 } else if (&point == points_[1]) { in PointCCW() 231 } else if (&point == points_[2]) { in PointCCW() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/sections/ |
| H A D | section_functions.hpp | 43 …static inline bool apply(int dir, Point const& point, Box const& /*point_box*/, Box const& other_b… in apply() 45 return (dir == 1 && get<Dimension>(point) < get<min_corner, Dimension>(other_box)) in apply() 46 || (dir == -1 && get<Dimension>(point) > get<max_corner, Dimension>(other_box)); in apply() 54 … static inline bool apply(int dir, Point const& point, Box const& point_box, Box const& other_box) in apply() 69 >(get<min_corner, 0>(other_box), get<0>(point)); in apply() 83 >(get<max_corner, 0>(other_box), get<0>(point)); in apply() 106 Point const& point, in preceding() argument 112 geometry::recalculate(robust_point, point, robust_policy); in preceding() 124 Point const& point, in exceeding() argument 129 return preceding<Dimension>(-dir, point, point_robust_box, other_robust_box, robust_policy); in exceeding()
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/ |
| H A D | zforce_ts.c | 341 struct zforce_point point; in zforce_touch_event() local 353 point.coord_x = in zforce_touch_event() 355 point.coord_y = in zforce_touch_event() 358 if (point.coord_x > pdata->x_max || in zforce_touch_event() 359 point.coord_y > pdata->y_max) { in zforce_touch_event() 361 point.coord_x, point.coord_y); in zforce_touch_event() 362 point.coord_x = point.coord_y = 0; in zforce_touch_event() 365 point.state = payload[9 * i + 5] & 0x0f; in zforce_touch_event() 366 point.id = (payload[9 * i + 5] & 0xf0) >> 4; in zforce_touch_event() 369 point.area_major = max(payload[9 * i + 6], in zforce_touch_event() [all …]
|