OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buf_max_count
(Results
1 - 4
of
4
) sorted by null
/external/opencv/cv/include/
cv.hpp
147
int buf_size, buf_step, buf_count,
buf_max_count
;
member in class:CvBaseImageFilter
/external/opencv/cv/src/
cvmorph.cpp
311
int t =
buf_max_count
- max_ky*2;
314
buf_max_count
--;
332
for( ; buf_count <
buf_max_count
&& y < y2; buf_count++, y++, src += src_step )
[
all
...]
cvfilter.cpp
224
buf_max_count
= bsz/buf_step;
225
buf_max_count
= MIN(
buf_max_count
, max_rows - max_ky*2 );
226
buf_end = buf_start +
buf_max_count
*buf_step;
349
for( ; buf_count <
buf_max_count
&& y < y2; buf_count++, y++, src += src_step )
[
all
...]
cvsmooth.cpp
179
buf_max_count
--;
180
assert(
buf_max_count
>= max_ky*2 + 1 );
[
all
...]
Completed in 45 milliseconds