OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fillval
(Results
1 - 6
of
6
) sorted by null
/external/opencv/cv/src/
cvimgwarp.cpp
[
all
...]
/external/opencv/cxcore/src/
cxcmp.cpp
785
int
fillval
= -1;
local
787
fillval
= cmp_op == CV_CMP_NE || cmp_op == CV_CMP_GE || cmp_op == CV_CMP_GT ? 255 : 0;
789
fillval
= cmp_op == CV_CMP_NE || cmp_op == CV_CMP_LE || cmp_op == CV_CMP_LT ? 255 : 0;
790
if(
fillval
>= 0 )
792
fillval
^= invflag ? 255 : 0;
794
memset( dst->data.ptr + y*dst_step,
fillval
, size.width );
[
all
...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parse.c
73
/*@null@*/ yasm_expr *
fillval
, /*@null@*/ yasm_expr *maxskipval,
[
all
...]
/external/opencv/cv/include/
cv.h
275
CvScalar
fillval
CV_DEFAULT(cvScalarAll(0)) );
289
CvScalar
fillval
CV_DEFAULT(cvScalarAll(0)) );
300
CvScalar
fillval
CV_DEFAULT(cvScalarAll(0)) );
[
all
...]
/dalvik/vm/
Profile.cpp
779
u4
fillVal
= METHOD_ID(FILL_PATTERN);
785
if (METHOD_ID(methodVal) ==
fillVal
) {
[
all
...]
/external/opencv/cvaux/include/
cvmat.hpp
419
CvMAT& operator = ( double
fillval
);
420
CvMAT& operator = ( const CvScalar&
fillval
);
1132
inline CvMAT& CvMAT::operator = ( double
fillval
)
1134
cvFillImage( this,
fillval
);
1139
inline CvMAT& CvMAT::operator = ( const CvScalar&
fillval
)
1141
cvSet( this,
fillval
);
[
all
...]
Completed in 231 milliseconds