Home | History | Annotate | Download | only in arm

Lines Matching refs:sad

26 *  Contains definitions of functions to compute sad
78 uint32x2_t sad;
94 sad = vadd_u32(
96 return vget_lane_u32(sad, 0);
106 uint32x2_t sad;
124 sad = vadd_u32(
126 return vget_lane_u32(sad, 0);
136 uint32x2_t sad;
158 sad = vadd_u32(
160 return vget_lane_u32(sad, 0);
170 uint32x2_t sad;
200 sad = vadd_u32(
202 return vget_lane_u32(sad, 0);
213 WORD32 sad = 0;
229 sad += ihevce_4x4_sad_computer_neon(pu1_src, pu1_pred, src_strd, pred_strd);
232 sad += ihevce_8xn_sad_computer_neon(pu1_src, pu1_pred, src_strd, pred_strd, ht);
235 sad += ihevce_16xn_sad_computer_neon(pu1_src, pu1_pred, src_strd, pred_strd, ht);
238 sad += ihevce_32xn_sad_computer_neon(pu1_src, pu1_pred, src_strd, pred_strd, ht);
241 sad += ihevce_64xn_sad_computer_neon(pu1_src, pu1_pred, src_strd, pred_strd, ht);
263 sad += ihevce_32xn_sad_computer_neon(
269 sad += ihevce_16xn_sad_computer_neon(
275 sad += ihevce_8xn_sad_computer_neon(
281 sad += ihevce_4x4_sad_computer_neon(
290 return sad;