OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CONTINUOUS_FLAG
(Results
1 - 10
of
10
) sorted by null
/external/opencv3/modules/core/src/
cuda_gpu_mat.cpp
60
flags |= Mat::
CONTINUOUS_FLAG
;
69
flags |= step == minstep ? Mat::
CONTINUOUS_FLAG
: 0;
86
flags |= Mat::
CONTINUOUS_FLAG
;
95
flags |= step == minstep ? Mat::
CONTINUOUS_FLAG
: 0;
130
flags &= cols < m.cols ? ~Mat::
CONTINUOUS_FLAG
: -1;
134
flags |= Mat::
CONTINUOUS_FLAG
;
149
flags &= roi.width < m.cols ? ~Mat::
CONTINUOUS_FLAG
: -1;
249
flags |= Mat::
CONTINUOUS_FLAG
;
251
flags &= ~Mat::
CONTINUOUS_FLAG
;
umatrix.cpp
196
m.flags |= UMat::
CONTINUOUS_FLAG
;
198
m.flags &= ~UMat::
CONTINUOUS_FLAG
;
337
flags &= cols < m.cols ? ~
CONTINUOUS_FLAG
: -1;
342
flags |=
CONTINUOUS_FLAG
;
357
flags &= roi.width < m.cols ? ~
CONTINUOUS_FLAG
: -1;
358
flags |= roi.height == 1 ?
CONTINUOUS_FLAG
: 0;
428
m.flags &= ~
CONTINUOUS_FLAG
;
430
m.flags |=
CONTINUOUS_FLAG
;
472
flags |=
CONTINUOUS_FLAG
;
474
flags &= ~
CONTINUOUS_FLAG
;
[
all
...]
cuda_host_mem.cpp
205
flags = Mat::MAGIC_VAL + Mat::
CONTINUOUS_FLAG
+ type_;
precomp.hpp
157
return (flags & Mat::
CONTINUOUS_FLAG
) != 0 &&
matrix.cpp
340
m.flags |= Mat::
CONTINUOUS_FLAG
;
342
m.flags &= ~Mat::
CONTINUOUS_FLAG
;
467
flags &= cols < m.cols ? ~
CONTINUOUS_FLAG
: -1;
472
flags |=
CONTINUOUS_FLAG
;
489
flags &= roi.width < m.cols ? ~
CONTINUOUS_FLAG
: -1;
490
flags |= roi.height == 1 ?
CONTINUOUS_FLAG
: 0;
648
m.flags |= (m.cols*esz == m.step.p[0] || m.rows == 1 ? Mat::
CONTINUOUS_FLAG
: 0);
693
m.flags &= ~
CONTINUOUS_FLAG
;
695
m.flags |=
CONTINUOUS_FLAG
;
716
flags |=
CONTINUOUS_FLAG
;
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/
cuda.inl.hpp
295
return (flags & Mat::
CONTINUOUS_FLAG
) != 0;
476
return (flags & Mat::
CONTINUOUS_FLAG
) != 0;
types_c.h
532
type = (type & ~cv::Mat::
CONTINUOUS_FLAG
) | (m.flags & cv::Mat::
CONTINUOUS_FLAG
);
[
all
...]
mat.inl.hpp
404
flags |=
CONTINUOUS_FLAG
;
416
flags |= _step == minstep ?
CONTINUOUS_FLAG
: 0;
435
flags |=
CONTINUOUS_FLAG
;
447
flags |= _step == minstep ?
CONTINUOUS_FLAG
: 0;
695
return (flags &
CONTINUOUS_FLAG
) != 0;
[
all
...]
mat.hpp
[
all
...]
/external/opencv3/modules/core/src/cuda/
gpu_mat.cu
140
flags |= Mat::
CONTINUOUS_FLAG
;
Completed in 442 milliseconds