Home | History | Annotate | Download | only in src

Lines Matching refs:temptype

1263 #define  ICV_DEF_TRANSFORM_CASE_C1( arrtype, temptype, _ld_,        \
1272 temptype t0 = _cast_macro1_(_mat[0]*v0 + _mat[1]); \
1280 #define ICV_DEF_DIAG_TRANSFORM_CASE_C1( arrtype, temptype, _ld_, \
1285 temptype t0; \
1292 #define ICV_DEF_TRANSFORM_CASE_C2( arrtype, temptype, _ld_, \
1299 temptype t0, t1; \
1316 temptype t0 = \
1323 #define ICV_DEF_DIAG_TRANSFORM_CASE_C2( arrtype, temptype, _ld_, \
1328 temptype t0, t1; \
1338 #define ICV_DEF_TRANSFORM_CASE_C3( arrtype, temptype, _ld_, \
1345 temptype t0, t1, t2; \
1365 temptype t0 = _cast_macro1_(mat[0]*_ld_(src[0]) + \
1378 temptype t0 = _cast_macro1_(_mat[0]*v0 + \
1385 #define ICV_DEF_DIAG_TRANSFORM_CASE_C3( arrtype, temptype, _ld_, \
1390 temptype t0, t1, t2; \
1403 #define ICV_DEF_TRANSFORM_CASE_C4( arrtype, temptype, _ld_, \
1412 temptype t0 =_cast_macro1_(_mat[0]*v0+_mat[1]*v1+ \
1419 #define ICV_DEF_DIAG_TRANSFORM_CASE_C4( arrtype, temptype, _ld_, \
1424 temptype t0, t1; \
1441 #define ICV_DEF_TRANSFORM_FUNC( flavor, arrtype, temptype, _ld_, \
1453 ICV_DEF_TRANSFORM_CASE_C##cn( arrtype, temptype, _ld_, \
1461 #define ICV_DEF_DIAG_TRANSFORM_FUNC( flavor, arrtype, temptype, _ld_, \
1473 ICV_DEF_DIAG_TRANSFORM_CASE_C##cn( arrtype, temptype, _ld_, \
2118 #define ICV_DEF_MULADDC_CASE_C1( arrtype, temptype, src1, src2, dst, len ) \
2124 temptype t0 = (src1)[i]*s0 + (src2)[i]; \
2125 temptype t1 = (src1)[i+1]*s0 + (src2)[i+1]; \
2139 temptype t0 = (src1)[i]*s0 + (src2)[i]; \
2145 #define ICV_DEF_MULADDC_CASE_C2( arrtype, temptype, src1, src2, dst, len ) \
2151 temptype t0 = (src1)[i]*s0 - (src1)[i+1]*s1 + (src2)[i]; \
2152 temptype t1 = (src1)[i]*s1 + (src1)[i+1]*s0 + (src2)[i+1]; \
2166 temptype t0 = (src1)[i]*s0 - (src1)[i+1]*s1 + (src2)[i]; \
2167 temptype t1 = (src1)[i]*s1 + (src1)[i+1]*s0 + (src2)[i+1]; \
3226 #define ICV_DEF_DOT_PROD_FUNC_2D( flavor, arrtype, temptype, sumtype ) \
3241 temptype t0 = (temptype)src1[i]*src2[i]; \
3242 temptype t1 = (temptype)src1[i+1]*src2[i+1]; \
3243 t0 += (temptype)src1[i+2]*src2[i+2]; \
3244 t1 += (temptype)src1[i+3]*src2[i+3]; \
3250 sum += (temptype)src1[i]*src2[i]; \