Searched refs:acctype (Results 1 – 2 of 2) sorted by relevance
/external/opencv/cxcore/src/ |
D | cxsumpixels.cpp | 682 #define ICV_ACC_ROWS_FUNC( name, flavor, arrtype, acctype, \ argument 686 acctype* dst, CvSize size ) \ 699 acctype s0 = load_macro(src[i]); \ 700 acctype s1 = load_macro(src[i+1]); \ 701 acctype a0 = dst[i], a1 = dst[i+1]; \ 702 a0 = (acctype)__op__(a0,s0); a1 = (acctype)__op__(a1,s1); \ 708 a0 = (acctype)__op__(a0,s0); a1 = (acctype)__op__(a1,s1); \ 714 acctype s0 = load_macro(src[i]), a0 = dst[i]; \ 715 a0 = (acctype)__op__(a0,s0); \ 724 #define ICV_ACC_COLS_FUNC_C1( name, flavor, arrtype, worktype, acctype, __op__ )\ argument [all …]
|
/external/opencv/cv/src/ |
D | _cvipp.h | 102 #define IPCV_ACCUM( flavor, arrtype, acctype ) \ argument 105 ( const arrtype* src, int srcstep, acctype* dst, int dststep, CvSize size )) \ 108 ( const arrtype* src, int srcstep, acctype* dst, int dststep, CvSize size )) \ 112 acctype* dst, int dststep, CvSize size )) \ 115 ( const arrtype* src, int srcstep, acctype* dst, int dststep, \ 116 CvSize size, acctype alpha )) \ 121 acctype* dst, int dststep, CvSize size )) \ 125 acctype* dst, int dststep, CvSize size )) \ 129 const uchar* mask, int maskstep, acctype* dst, int dststep, CvSize size )) \ 133 acctype* dst, int dststep, CvSize size, acctype alpha )) \ [all …]
|