| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/ |
| H A D | util.hpp | 47 mapbox::geometry::point<T> const& pt2, in slopes_equal() argument 49 return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); in slopes_equal() 54 mapbox::geometry::wagyu::point<T> const& pt2, in slopes_equal() argument 56 return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); in slopes_equal() 61 mapbox::geometry::wagyu::point<T> const& pt2, in slopes_equal() argument 63 return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); in slopes_equal() 68 mapbox::geometry::point<T> const& pt2, in slopes_equal() argument 71 return (pt1.y - pt2.y) * (pt3.x - pt4.x) == (pt1.x - pt2.x) * (pt3.y - pt4.y); in slopes_equal()
|
| H A D | build_edges.hpp | 17 mapbox::geometry::point<T> const& pt2, in point_2_is_between_point_1_and_point_3() argument 19 if ((pt1 == pt3) || (pt1 == pt2) || (pt3 == pt2)) { in point_2_is_between_point_1_and_point_3() 22 return (pt2.x > pt1.x) == (pt2.x < pt3.x); in point_2_is_between_point_1_and_point_3() 24 return (pt2.y > pt1.y) == (pt2.y < pt3.y); in point_2_is_between_point_1_and_point_3() 41 mapbox::geometry::point<T2> pt2 = *itr; in build_edge_list() local 45 while (pt1 == pt2) { in build_edge_list() 58 if (pt3 == pt2) { in build_edge_list() 78 if (slopes_equal(pt1, pt2, pt3)) { in build_edge_list() 82 pt2 = pt1; in build_edge_list() 101 while (*itr_rev == pt2) { in build_edge_list() [all …]
|
| H A D | topology_correction.hpp | 194 [](point_ptr<T> const& pt1, point_ptr<T> const& pt2) { in sort_ring_points() argument 195 if (pt1->y != pt2->y) { in sort_ring_points() 196 return (pt1->y > pt2->y); in sort_ring_points() 198 return (pt1->x < pt2->x); in sort_ring_points() 205 point_ptr<T> pt2, in correct_self_intersection() argument 207 if (pt1->ring != pt2->ring) { in correct_self_intersection() 215 point_ptr<T> pt4 = pt2->prev; in correct_self_intersection() 218 pt2->prev = pt3; in correct_self_intersection() 219 pt3->next = pt2; in correct_self_intersection() 227 double area_2 = area_from_point(pt2, size_2, box2); in correct_self_intersection() [all …]
|
| H A D | ring_util.hpp | 71 mapbox::geometry::point<T> const& pt2) { in operator ()() 72 if (pt1.y == pt2.y) { in operator ()() 73 return pt1.x < pt2.x; in operator ()() 75 return pt1.y > pt2.y; in operator ()() 378 inline double get_dx(point<T> const& pt1, point<T> const& pt2) { in get_dx() argument 379 if (pt1.y == pt2.y) { in get_dx() 382 return static_cast<double>(pt2.x - pt1.x) / static_cast<double>(pt2.y - pt1.y); in get_dx()
|
| /OK3568_Linux_fs/external/xserver/fb/ |
| H A D | fbbits.h | 611 INT32 pt1, pt2; in POLYLINE() local 629 pt2 = *pts++; in POLYLINE() 632 if (isClipped(pt1, ul, lr) | isClipped(pt2, ul, lr)) { in POLYLINE() 635 intToX(pt2) + xoff, intToY(pt2) + yoff, in POLYLINE() 641 pt1 = pt2; in POLYLINE() 642 pt2 = *pts++; in POLYLINE() 649 intToX(pt2), intToY(pt2), in POLYLINE() 690 pt2 != *((INT32 *) ptsOrig)) { in POLYLINE() 696 pt1 = pt2; in POLYLINE() 697 pt2 = *pts++; in POLYLINE() [all …]
|
| /OK3568_Linux_fs/buildroot/package/vlc/ |
| H A D | 0009-modules-video_filter-opencv_example.cpp-fix-build-wi.patch | 14 cvRectangle( p_img[0], pt1, pt2, CV_RGB(0,0,0), 3, 8, 0 ); 32 pt2.x = (r->x+r->width)*scale; 34 pt2.y = (r->y+r->height)*scale; 35 - cvRectangle( p_img[0], pt1, pt2, CV_RGB(0,0,0), 3, 8, 0 ); 36 + cvRectangle( p_img[0], pt1, pt2, cvScalar(0,0,0,0), 3, 8, 0 );
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/clipper/ |
| H A D | clipper.cpp | 554 bool SlopesEqual(const IntPoint pt1, const IntPoint pt2, in SlopesEqual() argument 559 return Int128Mul(pt1.Y-pt2.Y, pt2.X-pt3.X) == Int128Mul(pt1.X-pt2.X, pt2.Y-pt3.Y); in SlopesEqual() 562 return (pt1.Y-pt2.Y)*(pt2.X-pt3.X) == (pt1.X-pt2.X)*(pt2.Y-pt3.Y); in SlopesEqual() 566 bool SlopesEqual(const IntPoint pt1, const IntPoint pt2, in SlopesEqual() argument 571 return Int128Mul(pt1.Y-pt2.Y, pt3.X-pt4.X) == Int128Mul(pt1.X-pt2.X, pt3.Y-pt4.Y); in SlopesEqual() 574 return (pt1.Y-pt2.Y)*(pt3.X-pt4.X) == (pt1.X-pt2.X)*(pt3.Y-pt4.Y); in SlopesEqual() 584 inline double GetDx(const IntPoint pt1, const IntPoint pt2) in GetDx() argument 586 return (pt1.Y == pt2.Y) ? in GetDx() 587 HORIZONTAL : (double)(pt2.X - pt1.X) / (pt2.Y - pt1.Y); in GetDx() 768 void SwapPoints(IntPoint &pt1, IntPoint &pt2) in SwapPoints() argument [all …]
|
| /OK3568_Linux_fs/external/xserver/glamor/ |
| H A D | glamor_gradient.c | 1124 GLfloat pt1[2], pt2[2]; in glamor_generate_linear_gradient_picture() local 1302 pt2); in glamor_generate_linear_gradient_picture() 1306 pt2[0], pt2[1]); in glamor_generate_linear_gradient_picture() 1388 pt1[1], pt2[1]); in glamor_generate_linear_gradient_picture() 1391 pt_distance = (pt2[0] - p1_distance); in glamor_generate_linear_gradient_picture() 1410 pt_distance = (pt2[1] - pt2[0] * slope) * cos_val - p1_distance; in glamor_generate_linear_gradient_picture()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/imgproc/ |
| H A D | imgproc_c.h | 382 CVAPI(int) cvSampleLine( const CvArr* image, CvPoint pt1, CvPoint pt2, void* buffer, 992 CVAPI(void) cvLine( CvArr* img, CvPoint pt1, CvPoint pt2, 1001 CVAPI(void) cvRectangle( CvArr* img, CvPoint pt1, CvPoint pt2, 1080 CVAPI(int) cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 ); 1088 CVAPI(int) cvInitLineIterator( const CvArr* image, CvPoint pt1, CvPoint pt2,
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/imgproc/ |
| H A D | imgproc_c.h | 382 CVAPI(int) cvSampleLine( const CvArr* image, CvPoint pt1, CvPoint pt2, void* buffer, 992 CVAPI(void) cvLine( CvArr* img, CvPoint pt1, CvPoint pt2, 1001 CVAPI(void) cvRectangle( CvArr* img, CvPoint pt1, CvPoint pt2, 1080 CVAPI(int) cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 ); 1088 CVAPI(int) cvInitLineIterator( const CvArr* image, CvPoint pt1, CvPoint pt2,
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/imgproc/ |
| H A D | imgproc_c.h | 382 CVAPI(int) cvSampleLine( const CvArr* image, CvPoint pt1, CvPoint pt2, void* buffer, 992 CVAPI(void) cvLine( CvArr* img, CvPoint pt1, CvPoint pt2, 1001 CVAPI(void) cvRectangle( CvArr* img, CvPoint pt1, CvPoint pt2, 1080 CVAPI(int) cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 ); 1088 CVAPI(int) cvInitLineIterator( const CvArr* image, CvPoint pt1, CvPoint pt2,
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/ |
| H A D | imgproc.hpp | 4399 CV_EXPORTS_W void line(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, 4415 CV_EXPORTS_W void arrowedLine(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, 4432 CV_EXPORTS_W void rectangle(InputOutputArray img, Point pt1, Point pt2, 4668 CV_EXPORTS bool clipLine(Size imgSize, CV_IN_OUT Point& pt1, CV_IN_OUT Point& pt2); 4675 CV_EXPORTS bool clipLine(Size2l imgSize, CV_IN_OUT Point2l& pt1, CV_IN_OUT Point2l& pt2); 4682 CV_EXPORTS_W bool clipLine(Rect imgRect, CV_OUT CV_IN_OUT Point& pt1, CV_OUT CV_IN_OUT Point& pt2); 4844 LineIterator( const Mat& img, Point pt1, Point pt2,
|
| H A D | calib3d.hpp | 1821 CV_EXPORTS_W double sampsonDistance(InputArray pt1, InputArray pt2, InputArray F);
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/ |
| H A D | imgproc.hpp | 4399 CV_EXPORTS_W void line(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, 4415 CV_EXPORTS_W void arrowedLine(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, 4432 CV_EXPORTS_W void rectangle(InputOutputArray img, Point pt1, Point pt2, 4668 CV_EXPORTS bool clipLine(Size imgSize, CV_IN_OUT Point& pt1, CV_IN_OUT Point& pt2); 4675 CV_EXPORTS bool clipLine(Size2l imgSize, CV_IN_OUT Point2l& pt1, CV_IN_OUT Point2l& pt2); 4682 CV_EXPORTS_W bool clipLine(Rect imgRect, CV_OUT CV_IN_OUT Point& pt1, CV_OUT CV_IN_OUT Point& pt2); 4844 LineIterator( const Mat& img, Point pt1, Point pt2,
|
| H A D | calib3d.hpp | 1821 CV_EXPORTS_W double sampsonDistance(InputArray pt1, InputArray pt2, InputArray F);
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/ |
| H A D | imgproc.hpp | 4399 CV_EXPORTS_W void line(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, 4415 CV_EXPORTS_W void arrowedLine(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, 4432 CV_EXPORTS_W void rectangle(InputOutputArray img, Point pt1, Point pt2, 4668 CV_EXPORTS bool clipLine(Size imgSize, CV_IN_OUT Point& pt1, CV_IN_OUT Point& pt2); 4675 CV_EXPORTS bool clipLine(Size2l imgSize, CV_IN_OUT Point2l& pt1, CV_IN_OUT Point2l& pt2); 4682 CV_EXPORTS_W bool clipLine(Rect imgRect, CV_OUT CV_IN_OUT Point& pt1, CV_OUT CV_IN_OUT Point& pt2); 4844 LineIterator( const Mat& img, Point pt1, Point pt2,
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ |
| H A D | types.hpp | 426 Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2); 1796 Rect_<_Tp>::Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2) in Rect_() argument 1798 x = std::min(pt1.x, pt2.x); in Rect_() 1799 y = std::min(pt1.y, pt2.y); in Rect_() 1800 width = std::max(pt1.x, pt2.x) - x; in Rect_() 1801 height = std::max(pt1.y, pt2.y) - y; in Rect_()
|
| H A D | types_c.h | 1936 #define CV_READ_EDGE( pt1, pt2, reader ) \ argument 1939 sizeof(pt2) == sizeof(CvPoint) && \ 1942 (pt2) = CV_CURRENT_POINT( reader ); \
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/ |
| H A D | types.hpp | 426 Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2); 1796 Rect_<_Tp>::Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2) in Rect_() argument 1798 x = std::min(pt1.x, pt2.x); in Rect_() 1799 y = std::min(pt1.y, pt2.y); in Rect_() 1800 width = std::max(pt1.x, pt2.x) - x; in Rect_() 1801 height = std::max(pt1.y, pt2.y) - y; in Rect_()
|
| H A D | types_c.h | 1936 #define CV_READ_EDGE( pt1, pt2, reader ) \ argument 1939 sizeof(pt2) == sizeof(CvPoint) && \ 1942 (pt2) = CV_CURRENT_POINT( reader ); \
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/ |
| H A D | types.hpp | 426 Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2); 1796 Rect_<_Tp>::Rect_(const Point_<_Tp>& pt1, const Point_<_Tp>& pt2) in Rect_() argument 1798 x = std::min(pt1.x, pt2.x); in Rect_() 1799 y = std::min(pt1.y, pt2.y); in Rect_() 1800 width = std::max(pt1.x, pt2.x) - x; in Rect_() 1801 height = std::max(pt1.y, pt2.y) - y; in Rect_()
|
| H A D | types_c.h | 1936 #define CV_READ_EDGE( pt1, pt2, reader ) \ argument 1939 sizeof(pt2) == sizeof(CvPoint) && \ 1942 (pt2) = CV_CURRENT_POINT( reader ); \
|
| /OK3568_Linux_fs/kernel/drivers/media/common/saa7146/ |
| H A D | saa7146_video.c | 208 struct saa7146_pgtable *pt2 = &buf->pt[1]; in saa7146_pgtable_build() local 245 ptr2 = pt2->cpu; in saa7146_pgtable_build() 263 pt2->offset = pt1->offset+o1; in saa7146_pgtable_build()
|
| /OK3568_Linux_fs/kernel/drivers/thermal/qcom/ |
| H A D | tsens.h | 579 void compute_intercept_slope(struct tsens_priv *priv, u32 *pt1, u32 *pt2, u32 mode);
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/figlet/figlet/ |
| H A D | 0001-build-add-autotools-support-to-allow-easy-cross-comp.patch | 174 + fonts/646-pt2.flc \
|