Home
last modified time | relevance | path

Searched full:points (Results 1 – 25 of 3858) sorted by relevance

12345678910>>...155

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqgeosimplify.cpp101 void QGeoSimplify::simplifyDPStep(const QList<QGeoCoordinate> &points, const double &leftBound, int… in simplifyDPStep() argument
107 const double distance = getSegDist(points.at(i), in simplifyDPStep()
108 points.at(first), in simplifyDPStep()
109 points.at(last), in simplifyDPStep()
120 simplifyDPStep(points, in simplifyDPStep()
126 simplified.append(points.at(index)); in simplifyDPStep()
128 simplifyDPStep(points, in simplifyDPStep()
147 void QGeoSimplify::simplifyDPStep(const QList<QDoubleVector2D> &points, in simplifyDPStep() argument
158 const double distance = getSegDist(points.at(i), in simplifyDPStep()
159 points.at(first), in simplifyDPStep()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover_impl.cpp20 // Reorder a ring of points such that it starts at a point with a local minimum y-coordinate
21 void start_list_on_local_minimum(PointList& points) { in start_list_on_local_minimum() argument
22 auto prev_pt = std::prev(points.end(), 2); in start_list_on_local_minimum()
23 auto pt = points.begin(); in start_list_on_local_minimum()
25 while (pt != points.end()) { in start_list_on_local_minimum()
33 if (next_pt == points.end()) { next_pt = std::next(points.begin()); } in start_list_on_local_minimum()
35 if (pt == points.end()) in start_list_on_local_minimum()
38 if (points.back() == points.front()) { in start_list_on_local_minimum()
39 points.pop_back(); in start_list_on_local_minimum()
41 std::rotate(points.begin(), pt, points.end()); in start_list_on_local_minimum()
[all …]
/OK3568_Linux_fs/kernel/Documentation/input/
H A Dshape.svg2 …<polyline transform="translate(-121.88 -68.4)" points="4200 3600 4200 3075 4950 2325 7425 2325 825…
3 …<polyline transform="translate(-121.88 -68.4)" points="4200 3675 4200 5400" fill="none" stroke="#0…
4 …<polyline transform="translate(-121.88 -68.4)" points="8250 3675 8250 5400" fill="none" stroke="#0…
5 …<polyline transform="translate(-121.88 -68.4)" points="3675 3600 8700 3600" fill="none" stroke="#0…
6 …<polyline transform="translate(-121.88 -68.4)" points="8775 3600 10200 3600" fill="none" stroke="#…
7 …<polyline transform="translate(-121.88 -68.4)" points="8325 3150 9075 3150" fill="none" stroke="#0…
8 …<polyline transform="translate(-121.88 -68.4)" points="7500 2325 10200 2325" fill="none" stroke="#…
9 …<polyline transform="translate(-121.88 -68.4)" points="3600 3600 3e3 3600" fill="none" stroke="#00…
10 …<polyline transform="translate(-121.88 -68.4)" points="4125 3075 3e3 3075" fill="none" stroke="#00…
11 …<polyline transform="translate(-121.88 -68.4)" points="4217 5400 8158 5400" fill="none" stroke="#0…
[all …]
H A Dinteractive.svg2 …<polyline transform="translate(-18.5,-16.294)" points="1200 3600 1800 3600 2400 4800 3e3 4800 4200…
4 …<polyline transform="translate(-18.5,-16.294)" points="1200 4800 4800 4800" fill="none" stroke="#0…
5 …<polyline transform="translate(-18.5,-16.294)" points="2400 4800 2400 6525 1950 7125 1950 7800" fi…
6 …<polyline transform="translate(-18.5,-16.294)" points="3e3 4800 3e3 6525 3600 7125 3600 7800" fill…
7 …<polyline transform="translate(-18.5,-16.294)" points="3837 5389 4125 5100 5400 5100" fill="none" …
8 …<polyline transform="translate(-18.5,-16.294)" points="3889 5292 3826 5398 3932 5334" fill="none" …
9 …<polyline transform="translate(-18.5,-16.294)" points="2112 4189 2400 3900 5400 3900" fill="none" …
10 …<polyline transform="translate(-18.5,-16.294)" points="2164 4092 2101 4198 2207 4134" fill="none" …
11 …<polyline transform="translate(-18.5,-16.294)" points="4800 5700 5400 5700" fill="none" stroke="#0…
12 …<polyline transform="translate(-18.5,-16.294)" points="1800 3600 5400 3600" fill="none" stroke="#0…
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/
H A Dsimplex_downhill.h38 Adds val to array vals (and point to array points) and keeping the arrays sorted by vals.
41 void addValue(int pos, float val, float* vals, T* point, T* points, int n) in addValue() argument
45 points[pos*n+i] = point[i]; in addValue()
53 swap(points[j*n+i],points[(j-1)*n+i]); in addValue()
62 Preconditions: points is a 2D mattrix of size (n+1) x n
64 vals is the cost function in the n+1 simplex points, if NULL it will be computed
66 Postcondition: returns optimum value and points[0..n] are the optimum parameters
69 float optimizeSimplexDownhill(T* points, int n, F func, float* vals = NULL )
88 float val = func(points+i*n);
89 addValue(i, val, vals, points+i*n, points, n);
[all …]
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_spans.c47 int n, DDXPointPtr points, int *widths, int sorted) in glamor_fill_spans_gl() argument
74 /* Set up the vertex buffers for the points */ in glamor_fill_spans_gl()
84 v[0] = points->x; in glamor_fill_spans_gl()
85 v[1] = points->y; in glamor_fill_spans_gl()
87 points++; in glamor_fill_spans_gl()
99 /* Set up the vertex buffers for the points */ in glamor_fill_spans_gl()
108 v[0] = points->x; v[1] = points->y; in glamor_fill_spans_gl()
109 v[2] = points->x; v[3] = points->y + 1; in glamor_fill_spans_gl()
110 v[4] = points->x + *widths; v[5] = points->y + 1; in glamor_fill_spans_gl()
111 v[6] = points->x + *widths; v[7] = points->y; in glamor_fill_spans_gl()
[all …]
H A Dglamor_lines.c37 int mode, int n, DDXPointPtr points) in glamor_poly_lines_solid_gl() argument
71 /* Set up the vertex buffers for the points */ in glamor_poly_lines_solid_gl()
86 here.x += points[i].x; in glamor_poly_lines_solid_gl()
87 here.y += points[i].y; in glamor_poly_lines_solid_gl()
91 memcpy(v, points, n * sizeof (DDXPointRec)); in glamor_poly_lines_solid_gl()
134 int mode, int n, DDXPointPtr points) in glamor_poly_lines_gl() argument
141 return glamor_poly_lines_solid_gl(drawable, gc, mode, n, points); in glamor_poly_lines_gl()
143 return glamor_poly_lines_dash_gl(drawable, gc, mode, n, points); in glamor_poly_lines_gl()
146 return glamor_poly_lines_solid_gl(drawable, gc, mode, n, points); in glamor_poly_lines_gl()
148 return glamor_poly_lines_dash_gl(drawable, gc, mode, n, points); in glamor_poly_lines_gl()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geojsonvt/6.5.1/include/mapbox/geojsonvt/
H A Dsimplify.hpp37 inline void simplify(std::vector<vt_point>& points, size_t first, size_t last, double sqTolerance) { in simplify() argument
44 const double sqDist = getSqSegDist(points[i], points[first], points[last]); in simplify()
64 points[index].z = maxSqDist; in simplify()
66 simplify(points, first, index, sqTolerance); in simplify()
68 simplify(points, index, last, sqTolerance); in simplify()
72 inline void simplify(std::vector<vt_point>& points, double tolerance) { in simplify() argument
73 const size_t len = points.size(); in simplify()
76 points[0].z = 1.0; in simplify()
77 points[len - 1].z = 1.0; in simplify()
79 simplify(points, 0, len - 1, tolerance * tolerance); in simplify()
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/exynos/
H A Dexynos5433-bus.dtsi14 operating-points-v2 = <&bus_g2d_400_opp_table>;
22 operating-points-v2 = <&bus_g2d_266_opp_table>;
30 operating-points-v2 = <&bus_gscl_opp_table>;
38 operating-points-v2 = <&bus_hevc_opp_table>;
46 operating-points-v2 = <&bus_g2d_400_opp_table>;
54 operating-points-v2 = <&bus_g2d_400_opp_table>;
62 operating-points-v2 = <&bus_g2d_400_opp_table>;
70 operating-points-v2 = <&bus_hevc_opp_table>;
78 operating-points-v2 = <&bus_hevc_opp_table>;
86 operating-points-v2 = <&bus_noc2_opp_table>;
[all …]
/OK3568_Linux_fs/external/xserver/render/
H A Dmitri.c37 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds) in miPointFixedBounds() argument
39 bounds->x1 = xFixedToInt(points->x); in miPointFixedBounds()
40 bounds->x2 = xFixedToInt(xFixedCeil(points->x)); in miPointFixedBounds()
41 bounds->y1 = xFixedToInt(points->y); in miPointFixedBounds()
42 bounds->y2 = xFixedToInt(xFixedCeil(points->y)); in miPointFixedBounds()
43 points++; in miPointFixedBounds()
46 INT16 x1 = xFixedToInt(points->x); in miPointFixedBounds()
47 INT16 x2 = xFixedToInt(xFixedCeil(points->x)); in miPointFixedBounds()
48 INT16 y1 = xFixedToInt(points->y); in miPointFixedBounds()
49 INT16 y2 = xFixedToInt(xFixedCeil(points->y)); in miPointFixedBounds()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/kdbush/0.1.1-1/include/
H A Dkdbush.hpp51 assert(points.empty()); in fill()
54 points.reserve(size); in fill()
59 points.emplace_back(nth<0, TPoint>::get(*p), nth<1, TPoint>::get(*p)); in fill()
82 std::vector<std::pair<TNumber, TNumber>> points; member in kdbush::KDBush
97 const TNumber x = std::get<0>(points[i]); in range()
98 const TNumber y = std::get<1>(points[i]); in range()
105 const TNumber x = std::get<0>(points[m]); in range()
106 const TNumber y = std::get<1>(points[m]); in range()
130 const TNumber x = std::get<0>(points[i]); in within()
131 const TNumber y = std::get<1>(points[i]); in within()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr3/
H A Dia_css_tnr3_types.h36 * a "Knee" point. As there are three such segments, four points need to be
38 * axis two points are fixed (namely 0 and maximum luma value - depending on
39 * ISP bit depth). The other two points are the points where the slope may
40 * change its value. These two points are called knee points. The four points on
53 unsigned int knee_y[TNR3_NUM_SEGMENTS - 1]; /** Knee points */
55 1]; /** Standard deviation for Y at points Y0, Y1, Y2, Y3 */
57 1]; /** Standard deviation for U at points U0, U1, U2, U3 */
59 1]; /** Standard deviation for V at points V0, V1, V2, V3 */
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/
H A Dcalib3d.hpp55 formed by projecting 3D points into the image plane using a perspective transformation.
165 - Project 3D points to the image plane given intrinsic and extrinsic parameters.
166 - Compute extrinsic parameters given intrinsic parameters, a few 3D points, and their
287 FM_RANSAC = 8 //!< RANSAC algorithm. It needs at least 15 points. 7-point algorithm is used.
312 An example program about pose estimation from coplanar points
319 @param srcPoints Coordinates of the points in the original plane, a matrix of the type CV_32FC2
321 @param dstPoints Coordinates of the points in the target plane, a matrix of the type CV_32FC2 or
324 - **0** - a regular method using all the points, i.e., the least squares method
491 /** @brief Projects 3D points to an image plane.
493 @param objectPoints Array of object points, 3xN/Nx3 1-channel or 1xN/Nx1 3-channel (or
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/
H A Dcalib3d.hpp55 formed by projecting 3D points into the image plane using a perspective transformation.
165 - Project 3D points to the image plane given intrinsic and extrinsic parameters.
166 - Compute extrinsic parameters given intrinsic parameters, a few 3D points, and their
287 FM_RANSAC = 8 //!< RANSAC algorithm. It needs at least 15 points. 7-point algorithm is used.
312 An example program about pose estimation from coplanar points
319 @param srcPoints Coordinates of the points in the original plane, a matrix of the type CV_32FC2
321 @param dstPoints Coordinates of the points in the target plane, a matrix of the type CV_32FC2 or
324 - **0** - a regular method using all the points, i.e., the least squares method
491 /** @brief Projects 3D points to an image plane.
493 @param objectPoints Array of object points, 3xN/Nx3 1-channel or 1xN/Nx1 3-channel (or
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/
H A Dcalib3d.hpp55 formed by projecting 3D points into the image plane using a perspective transformation.
165 - Project 3D points to the image plane given intrinsic and extrinsic parameters.
166 - Compute extrinsic parameters given intrinsic parameters, a few 3D points, and their
287 FM_RANSAC = 8 //!< RANSAC algorithm. It needs at least 15 points. 7-point algorithm is used.
312 An example program about pose estimation from coplanar points
319 @param srcPoints Coordinates of the points in the original plane, a matrix of the type CV_32FC2
321 @param dstPoints Coordinates of the points in the target plane, a matrix of the type CV_32FC2 or
324 - **0** - a regular method using all the points, i.e., the least squares method
491 /** @brief Projects 3D points to an image plane.
493 @param objectPoints Array of object points, 3xN/Nx3 1-channel or 1xN/Nx1 3-channel (or
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/opp/
H A Dopp.txt1 Generic OPP (Operating Performance Points) Bindings
6 Performance Points aka OPPs. This document defines bindings for these OPPs
13 Binding 1: operating-points
19 - operating-points: An array of 2-tuples items, and each item consists
30 operating-points = <
39 Binding 2: operating-points-v2
42 * Property: operating-points-v2
44 Devices supporting OPPs must set their "operating-points-v2" property with
46 find the operating points for the device.
55 and should have a compatible description like: "operating-points-v2-<vendor>".
[all …]
/OK3568_Linux_fs/external/xserver/glx/
H A Drender2.c44 GLfloat u1, u2, *points; in __glXDisp_Map1f() local
51 points = (GLfloat *) (pc + 16); in __glXDisp_Map1f()
54 glMap1f(target, u1, u2, k, order, points); in __glXDisp_Map1f()
61 GLfloat u1, u2, v1, v2, *points; in __glXDisp_Map2f() local
71 points = (GLfloat *) (pc + 28); in __glXDisp_Map2f()
77 glMap2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points); in __glXDisp_Map2f()
89 GLdouble u1, u2, *points; in __glXDisp_Map1d() local
115 points = (GLdouble *) (pc - 4); in __glXDisp_Map1d()
118 points = (GLdouble *) pc; in __glXDisp_Map1d()
121 points = (GLdouble *) pc; in __glXDisp_Map1d()
[all …]
H A Drender2swap.c44 GLfloat u1, u2, *points; in __glXDispSwap_Map1f() local
60 points = (GLfloat *) (pc + 16); in __glXDispSwap_Map1f()
70 __GLX_SWAP_FLOAT_ARRAY(points, compsize); in __glXDispSwap_Map1f()
72 glMap1f(target, u1, u2, k, order, points); in __glXDispSwap_Map1f()
79 GLfloat u1, u2, v1, v2, *points; in __glXDispSwap_Map2f() local
101 points = (GLfloat *) (pc + 28); in __glXDispSwap_Map2f()
114 __GLX_SWAP_FLOAT_ARRAY(points, compsize); in __glXDispSwap_Map2f()
116 glMap2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points); in __glXDispSwap_Map2f()
124 GLdouble u1, u2, *points; in __glXDispSwap_Map1d() local
156 points = (GLdouble *) (pc - 4); in __glXDispSwap_Map1d()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dvega10_pptable.h96 USHORT usStateArrayOffset; /* points to ATOM_Vega10_State_Array */
97 USHORT usFanTableOffset; /* points to ATOM_Vega10_Fan_Table */
98 USHORT usThermalControllerOffset; /* points to ATOM_Vega10_Thermal_Controller */
99 USHORT usSocclkDependencyTableOffset; /* points to ATOM_Vega10_SOCCLK_Dependency_Table */
100 USHORT usMclkDependencyTableOffset; /* points to ATOM_Vega10_MCLK_Dependency_Table */
101 USHORT usGfxclkDependencyTableOffset; /* points to ATOM_Vega10_GFXCLK_Dependency_Table */
102 USHORT usDcefclkDependencyTableOffset; /* points to ATOM_Vega10_DCEFCLK_Dependency_Table */
103 USHORT usVddcLookupTableOffset; /* points to ATOM_Vega10_Voltage_Lookup_Table */
104 USHORT usVddmemLookupTableOffset; /* points to ATOM_Vega10_Voltage_Lookup_Table */
105 USHORT usMMDependencyTableOffset; /* points to ATOM_Vega10_MM_Dependency_Table */
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/buffer/
H A Dturn_in_piece_visitor.hpp343 // Points on helper-segments are considered as within in check_helper_segment()
344 // Points on original boundary are processed differently in check_helper_segment()
390 // Points on helper-segments are considered as within in check_helper_segment()
391 // Points on original boundary are processed differently in check_helper_segment()
417 point_type points[4]; in check_helper_segments() local
425 points[i] = piece.robust_ring[piece.offsetted_count + i]; in check_helper_segments()
430 // Triangular piece, assign points but assign second twice in check_helper_segments()
434 points[i] = piece.robust_ring[piece.offsetted_count + index]; in check_helper_segments()
439 // Some pieces (e.g. around points) do not have helper segments. in check_helper_segments()
446 if (comparator(point, points[0]) || comparator(point, points[3])) in check_helper_segments()
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Drk3399-op1-opp.dtsi8 compatible = "operating-points-v2";
43 compatible = "operating-points-v2";
86 compatible = "operating-points-v2";
116 operating-points-v2 = <&cluster0_opp>;
120 operating-points-v2 = <&cluster0_opp>;
124 operating-points-v2 = <&cluster0_opp>;
128 operating-points-v2 = <&cluster0_opp>;
132 operating-points-v2 = <&cluster1_opp>;
136 operating-points-v2 = <&cluster1_opp>;
140 operating-points-v2 = <&gpu_opp_table>;
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dexynos5422-odroid-core.dtsi39 compatible = "operating-points-v2";
65 compatible = "operating-points-v2";
83 compatible = "operating-points-v2";
95 compatible = "operating-points-v2";
110 compatible = "operating-points-v2";
131 compatible = "operating-points-v2";
149 compatible = "operating-points-v2";
158 compatible = "operating-points-v2";
179 compatible = "operating-points-v2";
197 compatible = "operating-points-v2";
[all …]
/OK3568_Linux_fs/external/xserver/mi/
H A Dmiwideline.c86 DDXPointPtr points; /* pointer to list of start points */ member
120 #define YMIN(spans) (spans->points[0].y)
121 #define YMAX(spans) (spans->points[spans->count-1].y)
139 subPt = sub->points; in miSubtractSpans()
142 spansPt = spans->points; in miSubtractSpans()
192 newPt = reallocarray(spans->points, in miSubtractSpans()
197 spansPt = newPt + (spansPt - spans->points); in miSubtractSpans()
198 spans->points = newPt; in miSubtractSpans()
246 ymin = spans->points[0].y; in miAppendSpans()
249 ymax = spans->points[spansCount - 1].y; in miAppendSpans()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dring.hpp73 std::size_t size_; // number of points in the ring
80 point_ptr<T> points; member
95 points(nullptr),
112 if (points != nullptr) { in recalculate_stats()
113 area_ = area_from_point(points, size_, bbox); in recalculate_stats()
163 std::deque<point<T>> points; member
176 points(), in ring_manager()
205 rings.points.emplace_back(r, pt); in create_new_point()
206 point = &rings.points.back(); in create_new_point()
222 rings.points.emplace_back(r, pt, before_this_point); in create_new_point()
[all …]
H A Dtopology_correction.hpp168 if (!r.points) { in correct_orientations()
177 reverse_ring(r.points); in correct_orientations()
186 point_ptr<T> point_itr = r->points; in sort_ring_points()
230 ring->points = pt1; in correct_self_intersection()
232 new_ring->points = pt2; in correct_self_intersection()
235 ring->points = pt2; in correct_self_intersection()
237 new_ring->points = pt1; in correct_self_intersection()
270 // Find sets of repeated points in find_and_correct_repeated_points()
350 // or have no points in assign_new_ring_parents()
353 if (r->points == nullptr) { in assign_new_ring_parents()
[all …]

12345678910>>...155