Lines Matching refs:cast_macro
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)); \
1293 dst[x*cn+k] = (arrtype)cast_macro(p0 + b*(p1 - p0)); \
1608 #define ICV_DEF_REMAP_BILINEAR_FUNC( flavor, arrtype, load_macro, cast_macro ) \ argument
1643 dst[j*cn + k] = (arrtype)cast_macro(t0 + _y*(t1 - t0)); \