/external/opencv/cv/src/ |
D | cvsamplers.cpp | 146 cast_macro, scale_macro, cast_macro2 )\ argument 191 worktype s0 = cast_macro(src[j])*a11 + \ 192 cast_macro(src[j+1])*a12 + \ 193 cast_macro(src[j+src_step])*a21 + \ 194 cast_macro(src[j+src_step+1])*a22; \ 195 worktype s1 = cast_macro(src[j+1])*a11 + \ 196 cast_macro(src[j+2])*a12 + \ 197 cast_macro(src[j+src_step+1])*a21 + \ 198 cast_macro(src[j+src_step+2])*a22; \ 206 worktype s0 = cast_macro(src[j])*a11 + \ [all …]
|
D | cvsumpixels.cpp | 45 cast_macro, cast_sqr_macro ) \ argument 86 sumtype t = cast_macro(src[x]); \ 103 sumtype t = cast_macro(it); \ 129 sumtype t = cast_macro(it); \ 153 s = t0 = cast_macro(it); \ 170 t0 = cast_macro(it); \ 185 t0 = cast_macro(it); \ 208 worktype, cast_macro, cast_sqr_macro ) \ argument 240 sum[x] = cast_macro(src[x]) + sum[x - cn]; \ 260 sumtype t = cast_macro(it) + sum[x-cn]; \
|
D | cvcolor.cpp | 701 #define CV_IMPL_BGRx2YCrCb( flavor, arrtype, worktype, scale_macro, cast_macro, \ argument 721 dst[i] = cast_macro(y); \ 722 dst[i+1] = cast_macro(r); \ 723 dst[i+2] = cast_macro(b); \ 742 scale_macro, cast_macro, YUV_BCb, YUV_GCr, YUV_GCb, YUV_RCr, YUV_Cx_BIAS)\ argument 766 dst[blue_idx] = cast_macro(b); \ 767 dst[1] = cast_macro(g); \ 768 dst[blue_idx^2] = cast_macro(r); \ 844 scale_macro, cast_macro, suffix ) \ argument 888 dst[i+2] = cast_macro(z); /*sum of weights for z > 1*/ \ [all …]
|
D | cvimgwarp.cpp | 286 #define ICV_DEF_RESIZE_AREA_FAST_FUNC( flavor, arrtype, worktype, cast_macro ) \ argument 315 dst[dx] = (arrtype)cast_macro( sum*scale ); \ 322 #define ICV_DEF_RESIZE_AREA_FUNC( flavor, arrtype, load_macro, cast_macro ) \ argument 388 dst[dx] = (arrtype)cast_macro(sum[dx] + buf[dx]); \ 394 dst[dx] = (arrtype)cast_macro(sum[dx] + buf[dx]*beta1); \ 953 scale_alpha_macro, mul_one_macro, descale_macro, cast_macro ) \ argument 995 dst[x*cn+k] = (arrtype)cast_macro(p0); \ 1017 dst[x*cn+k] = (arrtype)cast_macro(p0); \ 1225 #define ICV_DEF_WARP_PERSPECTIVE_BILINEAR_FUNC( flavor, arrtype, load_macro, cast_macro )\ argument 1270 dst[x*cn+k] = (arrtype)cast_macro(p0 + b*(p1 - p0)); \ [all …]
|
/external/opencv/cxcore/src/ |
D | cxconvert.cpp | 906 scale_macro, abs_macro, cast_macro, a, b ) \ argument 924 dst[i] = cast_macro(t0); \ 925 dst[i+1] = cast_macro(t1); \ 933 dst[i+2] = cast_macro(t0); \ 934 dst[i+3] = cast_macro(t1); \ 941 dst[i] = cast_macro(t0); \ 1107 scale_macro, cast_macro, a, b ) \ argument 1120 dst[i] = cast_macro(t0); \ 1121 dst[i+1] = cast_macro(t1); \ 1126 dst[i+2] = cast_macro(t0); \ [all …]
|
D | cxrand.cpp | 68 #define ICV_IMPL_RAND_BITS( flavor, arrtype, cast_macro ) \ argument 92 arr[i] = cast_macro((int)t0); \ 93 arr[i+1] = cast_macro((int)t1); \ 99 arr[i+2] = cast_macro((int)t0); \ 100 arr[i+3] = cast_macro((int)t1); \ 119 arr[i] = cast_macro((int)t0); \ 120 arr[i+1] = cast_macro((int)t1); \ 124 arr[i+2] = cast_macro((int)t0); \ 125 arr[i+3] = cast_macro((int)t1); \ 141 arr[i] = cast_macro((int)t0); \
|
D | cxarithm.cpp | 54 #define ICV_DEF_BIN_ARI_OP_CASE( __op__, worktype, cast_macro, len )\ argument 63 (dst)[i] = cast_macro( t0 ); \ 64 (dst)[i+1] = cast_macro( t1 ); \ 69 (dst)[i+2] = cast_macro( t0 ); \ 70 (dst)[i+3] = cast_macro( t1 ); \ 76 (dst)[i] = cast_macro( t0 ); \ 80 #define ICV_DEF_BIN_ARI_OP_2D( __op__, name, type, worktype, cast_macro ) \ argument 93 (dst)[0] = cast_macro( t0 ); \ 101 cast_macro, size.width ); \ 109 #define ICV_DEF_BIN_ARI_OP_2D_SFS(__op__, name, type, worktype, cast_macro) \ argument [all …]
|
D | cxcmp.cpp | 1249 #define ICV_DEF_BIN_ABS_DIFF_2D(name, arrtype, temptype, abs_macro, cast_macro)\ argument 1272 dst[i] = cast_macro(t0); \ 1273 dst[i+1] = cast_macro(t1); \ 1281 dst[i+2] = cast_macro(t0); \ 1282 dst[i+3] = cast_macro(t1); \ 1289 dst[i] = cast_macro(t0); \ 1297 #define ICV_DEF_UN_ABS_DIFF_2D( name, arrtype, temptype, abs_macro, cast_macro)\ argument 1319 dst[0] = cast_macro( t0 ); \ 1320 dst[1] = cast_macro( t1 ); \ 1328 dst[2] = cast_macro( t0 ); \ [all …]
|
D | cxmathfuncs.cpp | 1658 #define ICV_DEF_IPOW_OP( flavor, arrtype, worktype, cast_macro ) \ argument 1677 dst[i] = cast_macro(a); \
|