OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minstep
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/core/src/
cuda_gpu_mat.cpp
55
size_t
minstep
= cols * elemSize();
local
59
step =
minstep
;
65
step =
minstep
;
67
CV_DbgAssert( step >=
minstep
);
69
flags |= step ==
minstep
? Mat::CONTINUOUS_FLAG : 0;
72
dataend += step * (rows - 1) +
minstep
;
81
size_t
minstep
= cols * elemSize();
local
85
step =
minstep
;
91
step =
minstep
;
93
CV_DbgAssert( step >=
minstep
);
[
all
...]
umatrix.cpp
441
size_t esz = elemSize(),
minstep
;
452
minstep
= (ofs.x + cols)*esz;
453
wholeSize.height = (int)((delta2 -
minstep
)/step[0] + 1);
matrix.cpp
594
size_t esz = CV_ELEM_SIZE(m->type),
minstep
= thiz.cols*esz, _step = m->step;
596
_step =
minstep
;
598
thiz.dataend = thiz.datalimit - _step +
minstep
;
887
size_t esz = elemSize(),
minstep
;
local
898
minstep
= (ofs.x + cols)*esz;
899
wholeSize.height = (int)((delta2 -
minstep
)/step[0] + 1);
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/
mat.inl.hpp
400
size_t
minstep
= cols * esz;
local
403
_step =
minstep
;
408
if( rows == 1 ) _step =
minstep
;
409
CV_DbgAssert( _step >=
minstep
);
416
flags |= _step ==
minstep
? CONTINUOUS_FLAG : 0;
421
dataend = datalimit - _step +
minstep
;
431
size_t
minstep
= cols*esz;
local
434
_step =
minstep
;
439
if( rows == 1 ) _step =
minstep
;
440
CV_DbgAssert( _step >=
minstep
);
[
all
...]
Completed in 342 milliseconds