OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tl1
(Results
1 - 6
of
6
) sorted by null
/external/tcpdump/
print-beep.c
26
* Looks at the first few chars up to
tl1
...
30
l_strnstart(const char *tstr1, u_int
tl1
, const char *str2, u_int l2)
33
if (
tl1
> l2)
36
return (strncmp(tstr1, str2,
tl1
) == 0 ? 1 : 0);
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p5.cpp
51
auto
tl1
= []() throw(int) {};
53
static_assert(!noexcept(
tl1
()), "lambda can throw");
/external/opencv3/modules/stitching/src/
util.cpp
101
bool overlapRoi(Point
tl1
, Point tl2, Size sz1, Size sz2, Rect &roi)
103
int x_tl = std::max(
tl1
.x, tl2.x);
104
int y_tl = std::max(
tl1
.y, tl2.y);
105
int x_br = std::min(
tl1
.x + sz1.width, tl2.x + sz2.width);
106
int y_br = std::min(
tl1
.y + sz1.height, tl2.y + sz2.height);
seam_finders.cpp
119
Point
tl1
= corners_[first], tl2 = corners_[second];
local
126
int y1 = roi.y -
tl1
.y + y;
127
int x1 = roi.x -
tl1
.x + x;
159
mask1.at<uchar>(roi.y -
tl1
.y + y, roi.x -
tl1
.x + x) = 0;
203
const Mat &image1, const Mat &image2, Point
tl1
, Point tl2,
209
Point intersectTl(std::max(
tl1
.x, tl2.x), std::max(
tl1
.y, tl2.y));
211
Point intersectBr(std::min(
tl1
.x + image1.cols, tl2.x + image2.cols),
212
std::min(
tl1
.y + image1.rows, tl2.y + image2.rows))
[
all
...]
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
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,
util.hpp
153
CV_EXPORTS bool overlapRoi(Point
tl1
, Point tl2, Size sz1, Size sz2, Rect &roi);
Completed in 170 milliseconds