Searched refs:tl1 (Results 1 – 6 of 6) sorted by relevance
/external/tcpdump/ |
D | print-beep.c | 30 l_strnstart(const char *tstr1, u_int tl1, const char *str2, u_int l2) in l_strnstart() argument 33 if (tl1 > l2) in l_strnstart() 36 return (strncmp(tstr1, str2, tl1) == 0 ? 1 : 0); in l_strnstart()
|
/external/opencv3/modules/stitching/src/ |
D | util.cpp | 101 bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi) in overlapRoi() argument 103 int x_tl = std::max(tl1.x, tl2.x); in overlapRoi() 104 int y_tl = std::max(tl1.y, tl2.y); in overlapRoi() 105 int x_br = std::min(tl1.x + sz1.width, tl2.x + sz2.width); in overlapRoi() 106 int y_br = std::min(tl1.y + sz1.height, tl2.y + sz2.height); in overlapRoi()
|
D | seam_finders.cpp | 119 Point tl1 = corners_[first], tl2 = corners_[second]; in findInPair() local 126 int y1 = roi.y - tl1.y + y; in findInPair() 127 int x1 = roi.x - tl1.x + x; in findInPair() 159 mask1.at<uchar>(roi.y - tl1.y + y, roi.x - tl1.x + x) = 0; in findInPair() 203 const Mat &image1, const Mat &image2, Point tl1, Point tl2, in process() argument 209 Point intersectTl(std::max(tl1.x, tl2.x), std::max(tl1.y, tl2.y)); in process() 211 Point intersectBr(std::min(tl1.x + image1.cols, tl2.x + image2.cols), in process() 212 std::min(tl1.y + image1.rows, tl2.y + image2.rows)); in process() 217 unionTl_ = Point(std::min(tl1.x, tl2.x), std::min(tl1.y, tl2.y)); in process() 219 unionBr_ = Point(std::max(tl1.x + image1.cols, tl2.x + image2.cols), in process() [all …]
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p5.cpp | 51 auto tl1 = []() throw(int) {}; in test_exception_spec() 53 static_assert(!noexcept(tl1()), "lambda can throw"); in test_exception_spec()
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | seam_finders.hpp | 179 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2); 186 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2); 197 const Mat &image1, const Mat &image2, Point tl1, Point tl2, 201 const Mat &image1, const Mat &image2, Point tl1, Point tl2, int comp,
|
D | util.hpp | 153 CV_EXPORTS bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi);
|