/device/soc/esp/esp32/components/bt/host/bluedroid/stack/smp/ |
D | p_256_ecc_pp.c | 39 static void p_256_init_point(Point *q) in p_256_init_point() 41 memset(q, 0, sizeof(Point)); in p_256_init_point() 44 static void p_256_copy_point(Point *q, Point *p) in p_256_copy_point() 46 memcpy(q, p, sizeof(Point)); in p_256_copy_point() 50 static void ECC_Double(Point *q, Point *p, uint32_t keyLength) in ECC_Double() 96 static void ECC_Add(Point *r, Point *p, Point *q, uint32_t keyLength) in ECC_Add() 195 void ECC_PointMult_Bin_NAF(Point *q, Point *p, DWORD *n, uint32_t keyLength) in ECC_PointMult_Bin_NAF() 200 Point minus_p; in ECC_PointMult_Bin_NAF() 201 Point r; in ECC_PointMult_Bin_NAF() 249 bool ECC_CheckPointIsInElliCur_P256(Point *p) in ECC_CheckPointIsInElliCur_P256()
|
D | smp_keys.c | 1083 Point public_key; in smp_process_private_key() 1117 Point peer_publ_key, new_publ_key; in smp_compute_dhkey()
|
D | smp_act.c | 777 if (!ECC_CheckPointIsInElliCur_P256((Point *)&p_cb->peer_publ_key)) { in smp_process_pairing_public_key()
|
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/smp/include/ |
D | p_256_ecc_pp.h | 36 } Point; typedef 53 Point G; 68 void ECC_PointMult_Bin_NAF(Point *q, Point *p, DWORD *n, uint32_t keyLength); 70 bool ECC_CheckPointIsInElliCur_P256(Point *p);
|
/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/modules/calib3d/src/ |
D | checkchessboard.cpp | 52 static void icvGetQuadrangleHypotheses(const std::vector<std::vector< cv::Point > > & contours, con… in icvGetQuadrangleHypotheses() 58 typedef std::vector< std::vector< cv::Point > >::const_iterator iter_t; in icvGetQuadrangleHypotheses() 66 const std::vector< cv::Point > & c = *i; in icvGetQuadrangleHypotheses() 103 vector< vector<Point> > contours; in fillQuads() 111 vector< vector<Point> > contours; in fillQuads() 180 erode(img, white, Mat(), Point(-1, -1), erosion_count); in checkChessboard() 181 dilate(img, black, Mat(), Point(-1, -1), erosion_count); in checkChessboard() 215 erode(white, white, Mat(), Point(-1, -1), 1); in checkChessboardBinary() 216 dilate(black, black, Mat(), Point(-1, -1), 1); in checkChessboardBinary()
|
D | circlesgrid.cpp | 112 Point minLoc; in hierarchicalClustering() 257 Point maxLoc; in findOutsideCorners() 390 std::vector<Point> trueIndices; in rectifyPatternPoints() 391 trueIndices.push_back(Point(0, 0)); in rectifyPatternPoints() 392 trueIndices.push_back(Point(patternSize.width - 1, 0)); in rectifyPatternPoints() 395 trueIndices.push_back(Point(patternSize.width - 1, 1)); in rectifyPatternPoints() 396 trueIndices.push_back(Point(patternSize.width - 1, patternSize.height - 2)); in rectifyPatternPoints() 398 trueIndices.push_back(Point(patternSize.width - 1, patternSize.height - 1)); in rectifyPatternPoints() 399 trueIndices.push_back(Point(0, patternSize.height - 1)); in rectifyPatternPoints() 1303 Point maxLoc; in findLongestPath() [all …]
|
D | calibinit.cpp | 107 Point pt[4]; 110 QuadCountour(const Point pt_[4], int parent_contour_) : in QuadCountour() 547 dilate( thresh_img_new, thresh_img_new, Mat(), Point(-1, -1), 1 ); in findChessboardCorners() 552 …rectangle( thresh_img_new, Point(0,0), Point(thresh_img_new.cols-1, thresh_img_new.rows-1), Scalar… in findChessboardCorners() 611 dilate( thresh_img, thresh_img, Mat(), Point(-1, -1), dilations-1 ); in findChessboardCorners() 616 dilate( thresh_img, thresh_img, Mat(), Point(-1, -1), 1 ); in findChessboardCorners() 623 …rectangle( thresh_img, Point(0,0), Point(thresh_img.cols-1, thresh_img.rows-1), Scalar(255,255,255… in findChessboardCorners() 1764 std::vector<std::vector<Point> > contours; in generateQuads() 1785 const std::vector<Point>& contour = contours[idx]; in generateQuads() 1791 std::vector<Point> approx_contour; in generateQuads() [all …]
|
/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/modules/calib3d/include/ |
D | circlesgrid.hpp | 176 std::vector<cv::Point> &cornerIndices, std::vector<cv::Point> &firstSteps, 177 std::vector<cv::Point> &secondSteps) const; 178 …size_t getFirstCorner(std::vector<cv::Point> &largeCornerIndices, std::vector<cv::Point> &smallCor… 179 … std::vector<cv::Point> &firstSteps, std::vector<cv::Point> &secondSteps) const;
|
/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/modules/calib3d/misc/java/test/ |
D | Calib3dTest.java | 11 import org.opencv.core.Point; 166 Point center = new Point(gray_16s_1024.rows() / 2., gray_16s_1024.cols() / 2.); in testFilterSpecklesMatDoubleIntDouble() 212 Point pt = new Point(size * (2 * i + 1) / 10, size * (2 * j + 1) / 10); in testFindCirclesGridMatSizeMat() 237 Point pt = new Point(offsetx + (2 * i + j % 2) * step, offsety + step * j); in testFindCirclesGridMatSizeMatInt()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/scenario/tennis_detect/ |
D | tennis_detect.cpp | 202 vector<vector<Point>> contours; in TennisDetectCal() 203 findContours(gray, contours, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE, Point()); in TennisDetectCal()
|
/device/soc/rockchip/rk2206/hardware/docs/ |
D | WIFI.md | 9 - AP模式: Access Point,提供无线接入服务,允许其它无线设备接入,提供数据访问,一般的无线路由/网桥工作在该模式下。AP和AP之间允许相互连接
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/ |
D | README | 33 * PPPoS and PPPoE (Point-to-point protocol over Serial/Ethernet)
|
/device/board/talkweb/niobe407/liteos_m/bootloader/ |
D | STM32F407IGTx_FLASH.ld | 52 /* Entry Point */
|
/device/soc/goodix/gr551x/sdk_liteos/platform/startup/ |
D | gr551x.ld | 25 /* Entry Point */
|
/device/soc/asrmicro/asr582x/liteos_m/sdk/ |
D | gcc.ld | 25 /* Entry Point */
|
/device/board/talkweb/niobe407/liteos_m/bsp/ld/ |
D | STM32F407IGTx_FLASH.ld | 52 /* Entry Point */
|
/device/soc/rockchip/common/sdk_linux/drivers/gpio/ |
D | Kconfig | 318 Cougar Point), NM10 (Tiger Point), and 3100 (Whitmore Lake).
|
/device/board/isoftstone/zhiyuan/kernel/driver/ramfs/ |
D | rootfs_arm64.cpio.gz |
|