HomeSort by relevance Sort by last modified time
    Searched refs:dsttype (Results 1 - 9 of 9) sorted by null

  /external/opencv/cv/src/
cvaccum.cpp 44 #define ICV_DEF_ACC_FUNC( name, srctype, dsttype, cvtmacro ) \
46 name,( const srctype *src, int srcstep, dsttype *dst, \
58 dsttype t0 = dst[x] + cvtmacro(src[x]); \
59 dsttype t1 = dst[x + 1] + cvtmacro(src[x + 1]); \
81 #define ICV_DEF_ACCPROD_FUNC( flavor, srctype, dsttype, cvtmacro ) \
84 dsttype *dst, int dststep, CvSize size ), \
96 dsttype t0 = dst[x] + cvtmacro(src1[x])*cvtmacro(src2[x]); \
97 dsttype t1 = dst[x+1] + cvtmacro(src1[x+1])*cvtmacro(src2[x+1]);\
117 #define ICV_DEF_ACCWEIGHT_FUNC( flavor, srctype, dsttype, cvtmacro ) \
119 ( const srctype *src, int srcstep, dsttype *dst, int dststep,
    [all...]
cvsamplers.cpp 145 #define ICV_DEF_GET_RECT_SUB_PIX_FUNC( flavor, srctype, dsttype, worktype, \
149 dsttype* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) \
200 dst[j] = (dsttype)cast_macro2(s0); \
201 dst[j+1] = (dsttype)cast_macro2(s1); \
211 dst[j] = (dsttype)cast_macro2(s0); \
234 dst[j] = (dsttype)cast_macro2(s0); \
244 dst[j] = (dsttype)cast_macro2(s0); \
252 dst[j] = (dsttype)cast_macro2(s0); \
264 #define ICV_DEF_GET_RECT_SUB_PIX_FUNC_C3( flavor, srctype, dsttype, worktype, \
268 dsttype* dst, int dst_step, CvSize win_size, CvPoint2D32f center )
    [all...]
cvderiv.cpp 485 #define ICV_LAPLACE_ROW( flavor, srctype, dsttype, load_macro ) \
487 icvLaplaceRow_##flavor( const srctype* src, dsttype* dst, void* params )\
492 const dsttype* kx = (dsttype*)_kx->data.ptr; \
493 const dsttype* ky = (dsttype*)_ky->data.ptr; \
508 dsttype s0 = load_macro(s[i]); \
509 dsttype s1 = (dsttype)(s[i-cn] - s0*2 + s[i+cn]); \
515 dsttype s0 = (dsttype)(s[i-cn] + s[i]*2 + s[i+cn]);
    [all...]
cvfilter.cpp     [all...]
_cvipp.h     [all...]
  /external/opencv/cxcore/src/
cxlut.cpp 103 #define ICV_DEF_LUT_FUNC_8U_CN( flavor, dsttype, cn ) \
106 dsttype* dst, int dststep, CvSize size, \
107 const dsttype* lut ) \
114 ICV_LUT_CASE_C##cn( dsttype ) \
131 #define ICV_DEF_LUT_FUNC_8U( flavor, dsttype ) \
135 dsttype* dst, int dststep, CvSize size, \
136 const dsttype* _lut, int cn ) \
139 dsttype lutp[1024]; \
166 const dsttype* lut = lutp + k*256; \
169 dsttype t0 = lut[src[j]];
    [all...]
cxmatmul.cpp     [all...]
cxconvert.cpp 1546 int dsttype; local
    [all...]
  /external/libppp/src/
route.c 606 int dsttype = type & ROUTE_DSTANY; local
610 if ((dsttype && dsttype == ((*rp)->type & ROUTE_DSTANY)) ||
611 (!dsttype && ncprange_equal(&(*rp)->dst, dst))) {
638 int dsttype = type & ROUTE_DSTANY; local
641 if ((dsttype && dsttype == ((*rp)->type & ROUTE_DSTANY)) ||
642 (!dsttype && ncprange_equal(dst, &(*rp)->dst))) {

Completed in 476 milliseconds